home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / dev / lang / Python151_Src.lha / Python1.5_Source / Python / ceval.c < prev    next >
C/C++ Source or Header  |  1998-06-06  |  65KB  |  2,924 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its
  8. documentation for any purpose and without fee is hereby granted,
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI or Corporation for National Research Initiatives or
  13. CNRI not be used in advertising or publicity pertaining to
  14. distribution of the software without specific, written prior
  15. permission.
  16.  
  17. While CWI is the initial source for this software, a modified version
  18. is made available by the Corporation for National Research Initiatives
  19. (CNRI) at the Internet address ftp://ftp.python.org.
  20.  
  21. STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
  22. REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  23. MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
  24. CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  25. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  26. PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  27. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  28. PERFORMANCE OF THIS SOFTWARE.
  29.  
  30. ******************************************************************/
  31.  
  32. /* Execute compiled code */
  33.  
  34. /* XXX TO DO:
  35.    XXX how to pass arguments to call_trace?
  36.    XXX speed up searching for keywords by using a dictionary
  37.    XXX document it!
  38.    */
  39.  
  40. #include "Python.h"
  41.  
  42. #include "compile.h"
  43. #include "frameobject.h"
  44. #include "eval.h"
  45. #include "opcode.h"
  46.  
  47. #include <ctype.h>
  48.  
  49. #ifdef HAVE_LIMITS_H
  50. #include <limits.h>
  51. #else
  52. #define INT_MAX 2147483647
  53. #endif
  54.  
  55. /* Turn this on if your compiler chokes on the big switch: */
  56. /* #define CASE_TOO_BIG 1 */
  57.  
  58. #ifdef Py_DEBUG
  59. /* For debugging the interpreter: */
  60. #define LLTRACE  1    /* Low-level trace feature */
  61. #define CHECKEXC 1    /* Double-check exception checking */
  62. #endif
  63.  
  64.  
  65. /* Forward declarations */
  66.  
  67. static PyObject *eval_code2 Py_PROTO((PyCodeObject *,
  68.                  PyObject *, PyObject *,
  69.                  PyObject **, int,
  70.                  PyObject **, int,
  71.                  PyObject **, int,
  72.                  PyObject *));
  73. #ifdef LLTRACE
  74. static int prtrace Py_PROTO((PyObject *, char *));
  75. #endif
  76. static void call_exc_trace Py_PROTO((PyObject **, PyObject**,
  77.                      PyFrameObject *));
  78. static int call_trace Py_PROTO((PyObject **, PyObject **,
  79.                 PyFrameObject *, char *, PyObject *));
  80. static PyObject *call_builtin Py_PROTO((PyObject *, PyObject *, PyObject *));
  81. static PyObject *call_function Py_PROTO((PyObject *, PyObject *, PyObject *));
  82. static PyObject *loop_subscript Py_PROTO((PyObject *, PyObject *));
  83. static int slice_index Py_PROTO((PyObject *, int *));
  84. static PyObject *apply_slice Py_PROTO((PyObject *, PyObject *, PyObject *));
  85. static int assign_slice Py_PROTO((PyObject *, PyObject *,
  86.                   PyObject *, PyObject *));
  87. static int cmp_member Py_PROTO((PyObject *, PyObject *));
  88. static PyObject *cmp_outcome Py_PROTO((int, PyObject *, PyObject *));
  89. static int import_from Py_PROTO((PyObject *, PyObject *, PyObject *));
  90. static PyObject *build_class Py_PROTO((PyObject *, PyObject *, PyObject *));
  91. static int exec_statement Py_PROTO((PyFrameObject *,
  92.                     PyObject *, PyObject *, PyObject *));
  93. static PyObject *find_from_args Py_PROTO((PyFrameObject *, int));
  94. static void set_exc_info Py_PROTO((PyThreadState *,
  95.                 PyObject *, PyObject *, PyObject *));
  96. static void reset_exc_info Py_PROTO((PyThreadState *));
  97.  
  98.  
  99. /* Dynamic execution profile */
  100. #ifdef DYNAMIC_EXECUTION_PROFILE
  101. #ifdef DXPAIRS
  102. static long dxpairs[257][256];
  103. #define dxp dxpairs[256]
  104. #else
  105. static long dxp[256];
  106. #endif
  107. #endif
  108.  
  109.  
  110. #ifdef WITH_THREAD
  111.  
  112. #include <errno.h>
  113. #include "thread.h"
  114.  
  115. extern int _PyThread_Started; /* Flag for Py_Exit */
  116.  
  117. static type_lock interpreter_lock = 0;
  118. static long main_thread = 0;
  119.  
  120. void
  121. PyEval_InitThreads()
  122. {
  123.     if (interpreter_lock)
  124.         return;
  125.     _PyThread_Started = 1;
  126.     interpreter_lock = allocate_lock();
  127.     acquire_lock(interpreter_lock, 1);
  128.     main_thread = get_thread_ident();
  129. }
  130.  
  131. void
  132. PyEval_AcquireLock()
  133. {
  134.     acquire_lock(interpreter_lock, 1);
  135. }
  136.  
  137. void
  138. PyEval_ReleaseLock()
  139. {
  140.     release_lock(interpreter_lock);
  141. }
  142.  
  143. void
  144. PyEval_AcquireThread(tstate)
  145.     PyThreadState *tstate;
  146. {
  147.     if (tstate == NULL)
  148.         Py_FatalError("PyEval_AcquireThread: NULL new thread state");
  149.     acquire_lock(interpreter_lock, 1);
  150.     if (PyThreadState_Swap(tstate) != NULL)
  151.         Py_FatalError(
  152.             "PyEval_AcquireThread: non-NULL old thread state");
  153. }
  154.  
  155. void
  156. PyEval_ReleaseThread(tstate)
  157.     PyThreadState *tstate;
  158. {
  159.     if (tstate == NULL)
  160.         Py_FatalError("PyEval_ReleaseThread: NULL thread state");
  161.     if (PyThreadState_Swap(NULL) != tstate)
  162.         Py_FatalError("PyEval_ReleaseThread: wrong thread state");
  163.     release_lock(interpreter_lock);
  164. }
  165. #endif
  166.  
  167. /* Functions save_thread and restore_thread are always defined so
  168.    dynamically loaded modules needn't be compiled separately for use
  169.    with and without threads: */
  170.  
  171. PyThreadState *
  172. PyEval_SaveThread()
  173. {
  174.     PyThreadState *tstate = PyThreadState_Swap(NULL);
  175.     if (tstate == NULL)
  176.         Py_FatalError("PyEval_SaveThread: NULL tstate");
  177. #ifdef WITH_THREAD
  178.     if (interpreter_lock)
  179.         release_lock(interpreter_lock);
  180. #endif
  181.     return tstate;
  182. }
  183.  
  184. void
  185. PyEval_RestoreThread(tstate)
  186.     PyThreadState *tstate;
  187. {
  188.     if (tstate == NULL)
  189.         Py_FatalError("PyEval_RestoreThread: NULL tstate");
  190. #ifdef WITH_THREAD
  191.     if (interpreter_lock) {
  192.         int err = errno;
  193.         acquire_lock(interpreter_lock, 1);
  194.         errno = err;
  195.     }
  196. #endif
  197.     PyThreadState_Swap(tstate);
  198. }
  199.  
  200.  
  201. /* Mechanism whereby asynchronously executing callbacks (e.g. UNIX
  202.    signal handlers or Mac I/O completion routines) can schedule calls
  203.    to a function to be called synchronously.
  204.    The synchronous function is called with one void* argument.
  205.    It should return 0 for success or -1 for failure -- failure should
  206.    be accompanied by an exception.
  207.  
  208.    If registry succeeds, the registry function returns 0; if it fails
  209.    (e.g. due to too many pending calls) it returns -1 (without setting
  210.    an exception condition).
  211.  
  212.    Note that because registry may occur from within signal handlers,
  213.    or other asynchronous events, calling malloc() is unsafe!
  214.  
  215. #ifdef WITH_THREAD
  216.    Any thread can schedule pending calls, but only the main thread
  217.    will execute them.
  218. #endif
  219.  
  220.    XXX WARNING!  ASYNCHRONOUSLY EXECUTING CODE!
  221.    There are two possible race conditions:
  222.    (1) nested asynchronous registry calls;
  223.    (2) registry calls made while pending calls are being processed.
  224.    While (1) is very unlikely, (2) is a real possibility.
  225.    The current code is safe against (2), but not against (1).
  226.    The safety against (2) is derived from the fact that only one
  227.    thread (the main thread) ever takes things out of the queue.
  228.  
  229.    XXX Darn!  With the advent of thread state, we should have an array
  230.    of pending calls per thread in the thread state!  Later...
  231. */
  232.  
  233. #define NPENDINGCALLS 32
  234. static struct {
  235.     int (*func) Py_PROTO((ANY *));
  236.     ANY *arg;
  237. } pendingcalls[NPENDINGCALLS];
  238. static volatile int pendingfirst = 0;
  239. static volatile int pendinglast = 0;
  240. static volatile int things_to_do = 0;
  241.  
  242. int
  243. Py_AddPendingCall(func, arg)
  244.     int (*func) Py_PROTO((ANY *));
  245.     ANY *arg;
  246. {
  247.     static int busy = 0;
  248.     int i, j;
  249.     /* XXX Begin critical section */
  250.     /* XXX If you want this to be safe against nested
  251.        XXX asynchronous calls, you'll have to work harder! */
  252.     if (busy)
  253.         return -1;
  254.     busy = 1;
  255.     i = pendinglast;
  256.     j = (i + 1) % NPENDINGCALLS;
  257.     if (j == pendingfirst)
  258.         return -1; /* Queue full */
  259.     pendingcalls[i].func = func;
  260.     pendingcalls[i].arg = arg;
  261.     pendinglast = j;
  262.     things_to_do = 1; /* Signal main loop */
  263.     busy = 0;
  264.     /* XXX End critical section */
  265.     return 0;
  266. }
  267.  
  268. int
  269. Py_MakePendingCalls()
  270. {
  271.     static int busy = 0;
  272. #ifdef WITH_THREAD
  273.     if (main_thread && get_thread_ident() != main_thread)
  274.         return 0;
  275. #endif
  276.     if (busy)
  277.         return 0;
  278.     busy = 1;
  279.     things_to_do = 0;
  280.     for (;;) {
  281.         int i;
  282.         int (*func) Py_PROTO((ANY *));
  283.         ANY *arg;
  284.         i = pendingfirst;
  285.         if (i == pendinglast)
  286.             break; /* Queue empty */
  287.         func = pendingcalls[i].func;
  288.         arg = pendingcalls[i].arg;
  289.         pendingfirst = (i + 1) % NPENDINGCALLS;
  290.         if (func(arg) < 0) {
  291.             busy = 0;
  292.             things_to_do = 1; /* We're not done yet */
  293.             return -1;
  294.         }
  295.     }
  296.     busy = 0;
  297.     return 0;
  298. }
  299.  
  300.  
  301. /* Status code for main loop (reason for stack unwind) */
  302.  
  303. enum why_code {
  304.         WHY_NOT,    /* No error */
  305.         WHY_EXCEPTION,    /* Exception occurred */
  306.         WHY_RERAISE,    /* Exception re-raised by 'finally' */
  307.         WHY_RETURN,    /* 'return' statement */
  308.         WHY_BREAK    /* 'break' statement */
  309. };
  310.  
  311. static enum why_code do_raise Py_PROTO((PyObject *, PyObject *, PyObject *));
  312. static int unpack_sequence Py_PROTO((PyObject *, int, PyObject **));
  313.  
  314.  
  315. /* Backward compatible interface */
  316.  
  317. PyObject *
  318. PyEval_EvalCode(co, globals, locals)
  319.     PyCodeObject *co;
  320.     PyObject *globals;
  321.     PyObject *locals;
  322. {
  323.     return eval_code2(co,
  324.               globals, locals,
  325.               (PyObject **)NULL, 0,
  326.               (PyObject **)NULL, 0,
  327.               (PyObject **)NULL, 0,
  328.               (PyObject *)NULL);
  329. }
  330.  
  331.  
  332. /* Interpreter main loop */
  333.  
  334. #ifndef MAX_RECURSION_DEPTH
  335. #define MAX_RECURSION_DEPTH 10000
  336. #endif
  337.  
  338. static PyObject *
  339. eval_code2(co, globals, locals,
  340.        args, argcount, kws, kwcount, defs, defcount, owner)
  341.     PyCodeObject *co;
  342.     PyObject *globals;
  343.     PyObject *locals;
  344.     PyObject **args;
  345.     int argcount;
  346.     PyObject **kws; /* length: 2*kwcount */
  347.     int kwcount;
  348.     PyObject **defs;
  349.     int defcount;
  350.     PyObject *owner;
  351. {
  352. #ifdef DXPAIRS
  353.     int lastopcode = 0;
  354. #endif
  355.     register unsigned char *next_instr;
  356.     register int opcode = 0; /* Current opcode */
  357.     register int oparg = 0;    /* Current opcode argument, if any */
  358.     register PyObject **stack_pointer;
  359.     register enum why_code why; /* Reason for block stack unwind */
  360.     register int err;    /* Error status -- nonzero if error */
  361.     register PyObject *x;    /* Result object -- NULL if error */
  362.     register PyObject *v;    /* Temporary objects popped off stack */
  363.     register PyObject *w;
  364.     register PyObject *u;
  365.     register PyObject *t;
  366.     register PyFrameObject *f; /* Current frame */
  367.     register PyObject **fastlocals = NULL;
  368.     PyObject *retval = NULL;    /* Return value */
  369.     PyThreadState *tstate = PyThreadState_Get();
  370. #ifdef LLTRACE
  371.     int lltrace;
  372. #endif
  373. #if defined(Py_DEBUG) || defined(LLTRACE)
  374.     /* Make it easier to find out where we are with a debugger */
  375.     char *filename = PyString_AsString(co->co_filename);
  376. #endif
  377.  
  378. /* Code access macros */
  379.  
  380. #define GETCONST(i)    Getconst(f, i)
  381. #define GETNAME(i)    Getname(f, i)
  382. #define GETNAMEV(i)    Getnamev(f, i)
  383. #define FIRST_INSTR()    (GETUSTRINGVALUE(co->co_code))
  384. #define INSTR_OFFSET()    (next_instr - FIRST_INSTR())
  385. #define NEXTOP()    (*next_instr++)
  386. #define NEXTARG()    (next_instr += 2, (next_instr[-1]<<8) + next_instr[-2])
  387. #define JUMPTO(x)    (next_instr = FIRST_INSTR() + (x))
  388. #define JUMPBY(x)    (next_instr += (x))
  389.  
  390. /* Stack manipulation macros */
  391.  
  392. #define STACK_LEVEL()    (stack_pointer - f->f_valuestack)
  393. #define EMPTY()        (STACK_LEVEL() == 0)
  394. #define TOP()        (stack_pointer[-1])
  395. #define BASIC_PUSH(v)    (*stack_pointer++ = (v))
  396. #define BASIC_POP()    (*--stack_pointer)
  397.  
  398. #ifdef LLTRACE
  399. #define PUSH(v)        (BASIC_PUSH(v), lltrace && prtrace(TOP(), "push"))
  400. #define POP()        (lltrace && prtrace(TOP(), "pop"), BASIC_POP())
  401. #else
  402. #define PUSH(v)        BASIC_PUSH(v)
  403. #define POP()        BASIC_POP()
  404. #endif
  405.  
  406. /* Local variable macros */
  407.  
  408. #define GETLOCAL(i)    (fastlocals[i])
  409. #define SETLOCAL(i, value)    do { Py_XDECREF(GETLOCAL(i)); \
  410.                      GETLOCAL(i) = value; } while (0)
  411.  
  412. /* Start of code */
  413.  
  414. #ifdef USE_STACKCHECK
  415.     if (tstate->recursion_depth%10 == 0 && PyOS_CheckStack()) {
  416.         PyErr_SetString(PyExc_MemoryError, "Stack overflow");
  417.         return NULL;
  418.     }
  419. #endif
  420.  
  421.     if (globals == NULL) {
  422.         PyErr_SetString(PyExc_SystemError, "eval_code2: NULL globals");
  423.         return NULL;
  424.     }
  425.  
  426. #ifdef LLTRACE
  427.     lltrace = PyDict_GetItemString(globals, "__lltrace__") != NULL;
  428. #endif
  429.  
  430.     f = PyFrame_New(
  431.             tstate,            /*back*/
  432.             co,            /*code*/
  433.             globals,        /*globals*/
  434.             locals);        /*locals*/
  435.     if (f == NULL)
  436.         return NULL;
  437.  
  438.     tstate->frame = f;
  439.     fastlocals = f->f_localsplus;
  440.  
  441.     if (co->co_argcount > 0 ||
  442.         co->co_flags & (CO_VARARGS | CO_VARKEYWORDS)) {
  443.         int i;
  444.         int n = argcount;
  445.         PyObject *kwdict = NULL;
  446.         if (co->co_flags & CO_VARKEYWORDS) {
  447.             kwdict = PyDict_New();
  448.             if (kwdict == NULL)
  449.                 goto fail;
  450.             i = co->co_argcount;
  451.             if (co->co_flags & CO_VARARGS)
  452.                 i++;
  453.             SETLOCAL(i, kwdict);
  454.         }
  455.         if (argcount > co->co_argcount) {
  456.             if (!(co->co_flags & CO_VARARGS)) {
  457.                 PyErr_Format(PyExc_TypeError,
  458.                 "too many arguments; expected %d, got %d",
  459.                          co->co_argcount, argcount);
  460.                 goto fail;
  461.             }
  462.             n = co->co_argcount;
  463.         }
  464.         for (i = 0; i < n; i++) {
  465.             x = args[i];
  466.             Py_INCREF(x);
  467.             SETLOCAL(i, x);
  468.         }
  469.         if (co->co_flags & CO_VARARGS) {
  470.             u = PyTuple_New(argcount - n);
  471.             if (u == NULL)
  472.                 goto fail;
  473.             SETLOCAL(co->co_argcount, u);
  474.             for (i = n; i < argcount; i++) {
  475.                 x = args[i];
  476.                 Py_INCREF(x);
  477.                 PyTuple_SET_ITEM(u, i-n, x);
  478.             }
  479.         }
  480.         for (i = 0; i < kwcount; i++) {
  481.             PyObject *keyword = kws[2*i];
  482.             PyObject *value = kws[2*i + 1];
  483.             int j;
  484.             /* XXX slow -- speed up using dictionary? */
  485.             for (j = 0; j < co->co_argcount; j++) {
  486.                 PyObject *nm = PyTuple_GET_ITEM(
  487.                     co->co_varnames, j);
  488.                 if (PyObject_Compare(keyword, nm) == 0)
  489.                     break;
  490.             }
  491.             /* Check errors from Compare */
  492.             if (PyErr_Occurred())
  493.                 goto fail;
  494.             if (j >= co->co_argcount) {
  495.                 if (kwdict == NULL) {
  496.                     PyErr_Format(PyExc_TypeError,
  497.                      "unexpected keyword argument: %.400s",
  498.                      PyString_AsString(keyword));
  499.                     goto fail;
  500.                 }
  501.                 PyDict_SetItem(kwdict, keyword, value);
  502.             }
  503.             else {
  504.                 if (GETLOCAL(j) != NULL) {
  505.                     PyErr_SetString(PyExc_TypeError,
  506.                         "keyword parameter redefined");
  507.                     goto fail;
  508.                 }
  509.                 Py_INCREF(value);
  510.                 SETLOCAL(j, value);
  511.             }
  512.         }
  513.         if (argcount < co->co_argcount) {
  514.             int m = co->co_argcount - defcount;
  515.             for (i = argcount; i < m; i++) {
  516.                 if (GETLOCAL(i) == NULL) {
  517.                     PyErr_Format(PyExc_TypeError,
  518.                 "not enough arguments; expected %d, got %d",
  519.                              m, i);
  520.                     goto fail;
  521.                 }
  522.             }
  523.             if (n > m)
  524.                 i = n - m;
  525.             else
  526.                 i = 0;
  527.             for (; i < defcount; i++) {
  528.                 if (GETLOCAL(m+i) == NULL) {
  529.                     PyObject *def = defs[i];
  530.                     Py_INCREF(def);
  531.                     SETLOCAL(m+i, def);
  532.                 }
  533.             }
  534.         }
  535.     }
  536.     else {
  537.         if (argcount > 0 || kwcount > 0) {
  538.             PyErr_SetString(PyExc_TypeError,
  539.                     "no arguments expected");
  540.             goto fail;
  541.         }
  542.     }
  543.  
  544.     if (tstate->sys_tracefunc != NULL) {
  545.         /* tstate->sys_tracefunc, if defined, is a function that
  546.            will be called  on *every* entry to a code block.
  547.            Its return value, if not None, is a function that
  548.            will be called at the start of each executed line
  549.            of code.  (Actually, the function must return
  550.            itself in order to continue tracing.)
  551.            The trace functions are called with three arguments:
  552.            a pointer to the current frame, a string indicating
  553.            why the function is called, and an argument which
  554.            depends on the situation.  The global trace function
  555.            (sys.trace) is also called whenever an exception
  556.            is detected. */
  557.         if (call_trace(&tstate->sys_tracefunc,
  558.                    &f->f_trace, f, "call",
  559.                    Py_None/*XXX how to compute arguments now?*/)) {
  560.             /* Trace function raised an error */
  561.             goto fail;
  562.         }
  563.     }
  564.  
  565.     if (tstate->sys_profilefunc != NULL) {
  566.         /* Similar for sys_profilefunc, except it needn't return
  567.            itself and isn't called for "line" events */
  568.         if (call_trace(&tstate->sys_profilefunc,
  569.                    (PyObject**)0, f, "call",
  570.                    Py_None/*XXX*/)) {
  571.             goto fail;
  572.         }
  573.     }
  574.  
  575.     if (++tstate->recursion_depth > MAX_RECURSION_DEPTH) {
  576.         --tstate->recursion_depth;
  577.         PyErr_SetString(PyExc_RuntimeError,
  578.                 "Maximum recursion depth exceeded");
  579.         tstate->frame = f->f_back;
  580.         Py_DECREF(f);
  581.         return NULL;
  582.     }
  583.  
  584.     next_instr = GETUSTRINGVALUE(co->co_code);
  585.     stack_pointer = f->f_valuestack;
  586.     
  587.     why = WHY_NOT;
  588.     err = 0;
  589.     x = Py_None;    /* Not a reference, just anything non-NULL */
  590.     
  591.     for (;;) {
  592.         /* Do periodic things.  Doing this every time through
  593.            the loop would add too much overhead, so we do it
  594.            only every Nth instruction.  We also do it if
  595.            ``things_to_do'' is set, i.e. when an asynchronous
  596.            event needs attention (e.g. a signal handler or
  597.            async I/O handler); see Py_AddPendingCall() and
  598.            Py_MakePendingCalls() above. */
  599.         
  600.         if (things_to_do || --tstate->ticker < 0) {
  601.             tstate->ticker = tstate->interp->checkinterval;
  602.             if (things_to_do) {
  603.                 if (Py_MakePendingCalls() < 0) {
  604.                     why = WHY_EXCEPTION;
  605.                     goto on_error;
  606.                 }
  607.             }
  608. #if !defined(HAVE_SIGNAL_H) || defined(macintosh)
  609.             /* If we have true signals, the signal handler
  610.                will call Py_AddPendingCall() so we don't
  611.                have to call sigcheck().  On the Mac and
  612.                DOS, alas, we have to call it. */
  613.             if (PyErr_CheckSignals()) {
  614.                 why = WHY_EXCEPTION;
  615.                 goto on_error;
  616.             }
  617. #endif
  618.  
  619. #ifdef WITH_THREAD
  620.             if (interpreter_lock) {
  621.                 /* Give another thread a chance */
  622.  
  623.                 if (PyThreadState_Swap(NULL) != tstate)
  624.                     Py_FatalError("ceval: tstate mix-up");
  625.                 release_lock(interpreter_lock);
  626.  
  627.                 /* Other threads may run now */
  628.  
  629.                 acquire_lock(interpreter_lock, 1);
  630.                 if (PyThreadState_Swap(tstate) != NULL)
  631.                     Py_FatalError("ceval: orphan tstate");
  632.             }
  633. #endif
  634.         }
  635.  
  636.         /* Extract opcode and argument */
  637.  
  638. #if defined(Py_DEBUG) || defined(LLTRACE)
  639.         f->f_lasti = INSTR_OFFSET();
  640. #endif
  641.         
  642.         opcode = NEXTOP();
  643.         if (HAS_ARG(opcode))
  644.             oparg = NEXTARG();
  645. #ifdef DYNAMIC_EXECUTION_PROFILE
  646. #ifdef DXPAIRS
  647.         dxpairs[lastopcode][opcode]++;
  648.         lastopcode = opcode;
  649. #endif
  650.         dxp[opcode]++;
  651. #endif
  652.  
  653. #ifdef LLTRACE
  654.         /* Instruction tracing */
  655.         
  656.         if (lltrace) {
  657.             if (HAS_ARG(opcode)) {
  658.                 printf("%d: %d, %d\n",
  659.                     (int) (INSTR_OFFSET() - 3),
  660.                     opcode, oparg);
  661.             }
  662.             else {
  663.                 printf("%d: %d\n",
  664.                     (int) (INSTR_OFFSET() - 1), opcode);
  665.             }
  666.         }
  667. #endif
  668.  
  669.         /* Main switch on opcode */
  670.         
  671.         switch (opcode) {
  672.         
  673.         /* BEWARE!
  674.            It is essential that any operation that fails sets either
  675.            x to NULL, err to nonzero, or why to anything but WHY_NOT,
  676.            and that no operation that succeeds does this! */
  677.         
  678.         /* case STOP_CODE: this is an error! */
  679.         
  680.         case POP_TOP:
  681.             v = POP();
  682.             Py_DECREF(v);
  683.             continue;
  684.         
  685.         case ROT_TWO:
  686.             v = POP();
  687.             w = POP();
  688.             PUSH(v);
  689.             PUSH(w);
  690.             continue;
  691.         
  692.         case ROT_THREE:
  693.             v = POP();
  694.             w = POP();
  695.             x = POP();
  696.             PUSH(v);
  697.             PUSH(x);
  698.             PUSH(w);
  699.             continue;
  700.         
  701.         case DUP_TOP:
  702.             v = TOP();
  703.             Py_INCREF(v);
  704.             PUSH(v);
  705.             continue;
  706.         
  707.         case UNARY_POSITIVE:
  708.             v = POP();
  709.             x = PyNumber_Positive(v);
  710.             Py_DECREF(v);
  711.             PUSH(x);
  712.             if (x != NULL) continue;
  713.             break;
  714.         
  715.         case UNARY_NEGATIVE:
  716.             v = POP();
  717.             x = PyNumber_Negative(v);
  718.             Py_DECREF(v);
  719.             PUSH(x);
  720.             if (x != NULL) continue;
  721.             break;
  722.         
  723.         case UNARY_NOT:
  724.             v = POP();
  725.             err = PyObject_IsTrue(v);
  726.             Py_DECREF(v);
  727.             if (err == 0) {
  728.                 Py_INCREF(Py_True);
  729.                 PUSH(Py_True);
  730.                 continue;
  731.             }
  732.             else if (err > 0) {
  733.                 Py_INCREF(Py_False);
  734.                 PUSH(Py_False);
  735.                 err = 0;
  736.                 continue;
  737.             }
  738.             break;
  739.         
  740.         case UNARY_CONVERT:
  741.             v = POP();
  742.             x = PyObject_Repr(v);
  743.             Py_DECREF(v);
  744.             PUSH(x);
  745.             if (x != NULL) continue;
  746.             break;
  747.             
  748.         case UNARY_INVERT:
  749.             v = POP();
  750.             x = PyNumber_Invert(v);
  751.             Py_DECREF(v);
  752.             PUSH(x);
  753.             if (x != NULL) continue;
  754.             break;
  755.         
  756.         case BINARY_POWER:
  757.             w = POP();
  758.             v = POP();
  759.             x = PyNumber_Power(v, w, Py_None);
  760.             Py_DECREF(v);
  761.             Py_DECREF(w);
  762.             PUSH(x);
  763.             if (x != NULL) continue;
  764.             break;
  765.         
  766.         case BINARY_MULTIPLY:
  767.             w = POP();
  768.             v = POP();
  769.             x = PyNumber_Multiply(v, w);
  770.             Py_DECREF(v);
  771.             Py_DECREF(w);
  772.             PUSH(x);
  773.             if (x != NULL) continue;
  774.             break;
  775.         
  776.         case BINARY_DIVIDE:
  777.             w = POP();
  778.             v = POP();
  779.             x = PyNumber_Divide(v, w);
  780.             Py_DECREF(v);
  781.             Py_DECREF(w);
  782.             PUSH(x);
  783.             if (x != NULL) continue;
  784.             break;
  785.         
  786.         case BINARY_MODULO:
  787.             w = POP();
  788.             v = POP();
  789.             x = PyNumber_Remainder(v, w);
  790.             Py_DECREF(v);
  791.             Py_DECREF(w);
  792.             PUSH(x);
  793.             if (x != NULL) continue;
  794.             break;
  795.         
  796.         case BINARY_ADD:
  797.             w = POP();
  798.             v = POP();
  799.             if (PyInt_Check(v) && PyInt_Check(w)) {
  800.                 /* INLINE: int + int */
  801.                 register long a, b, i;
  802.                 a = ((PyIntObject*) v)->ob_ival;
  803.                 b = ((PyIntObject*) w)->ob_ival;
  804.                 i = a + b;
  805.                 if ((i^a) < 0 && (i^b) < 0) {
  806.                     PyErr_SetString(PyExc_OverflowError,
  807.                             "integer addition");
  808.                     x = NULL;
  809.                 }
  810.                 else
  811.                     x = PyInt_FromLong(i);
  812.             }
  813.             else
  814.                 x = PyNumber_Add(v, w);
  815.             Py_DECREF(v);
  816.             Py_DECREF(w);
  817.             PUSH(x);
  818.             if (x != NULL) continue;
  819.             break;
  820.         
  821.         case BINARY_SUBTRACT:
  822.             w = POP();
  823.             v = POP();
  824.             if (PyInt_Check(v) && PyInt_Check(w)) {
  825.                 /* INLINE: int - int */
  826.                 register long a, b, i;
  827.                 a = ((PyIntObject*) v)->ob_ival;
  828.                 b = ((PyIntObject*) w)->ob_ival;
  829.                 i = a - b;
  830.                 if ((i^a) < 0 && (i^~b) < 0) {
  831.                     PyErr_SetString(PyExc_OverflowError,
  832.                             "integer subtraction");
  833.                     x = NULL;
  834.                 }
  835.                 else
  836.                     x = PyInt_FromLong(i);
  837.             }
  838.             else
  839.                 x = PyNumber_Subtract(v, w);
  840.             Py_DECREF(v);
  841.             Py_DECREF(w);
  842.             PUSH(x);
  843.             if (x != NULL) continue;
  844.             break;
  845.         
  846.         case BINARY_SUBSCR:
  847.             w = POP();
  848.             v = POP();
  849.             if (PyList_Check(v) && PyInt_Check(w)) {
  850.                 /* INLINE: list[int] */
  851.                 long i = PyInt_AsLong(w);
  852.                 if (i < 0)
  853.                     i += ((PyListObject*) v)->ob_size;
  854.                 if (i < 0 ||
  855.                     i >= ((PyListObject*) v)->ob_size) {
  856.                     PyErr_SetString(PyExc_IndexError,
  857.                         "list index out of range");
  858.                     x = NULL;
  859.                 }
  860.                 else {
  861.                     x = ((PyListObject*) v)->ob_item[i];
  862.                     Py_INCREF(x);
  863.                 }
  864.             }
  865.             else
  866.                 x = PyObject_GetItem(v, w);
  867.             Py_DECREF(v);
  868.             Py_DECREF(w);
  869.             PUSH(x);
  870.             if (x != NULL) continue;
  871.             break;
  872.         
  873.         case BINARY_LSHIFT:
  874.             w = POP();
  875.             v = POP();
  876.             x = PyNumber_Lshift(v, w);
  877.             Py_DECREF(v);
  878.             Py_DECREF(w);
  879.             PUSH(x);
  880.             if (x != NULL) continue;
  881.             break;
  882.         
  883.         case BINARY_RSHIFT:
  884.             w = POP();
  885.             v = POP();
  886.             x = PyNumber_Rshift(v, w);
  887.             Py_DECREF(v);
  888.             Py_DECREF(w);
  889.             PUSH(x);
  890.             if (x != NULL) continue;
  891.             break;
  892.         
  893.         case BINARY_AND:
  894.             w = POP();
  895.             v = POP();
  896.             x = PyNumber_And(v, w);
  897.             Py_DECREF(v);
  898.             Py_DECREF(w);
  899.             PUSH(x);
  900.             if (x != NULL) continue;
  901.             break;
  902.         
  903.         case BINARY_XOR:
  904.             w = POP();
  905.             v = POP();
  906.             x = PyNumber_Xor(v, w);
  907.             Py_DECREF(v);
  908.             Py_DECREF(w);
  909.             PUSH(x);
  910.             if (x != NULL) continue;
  911.             break;
  912.         
  913.         case BINARY_OR:
  914.             w = POP();
  915.             v = POP();
  916.             x = PyNumber_Or(v, w);
  917.             Py_DECREF(v);
  918.             Py_DECREF(w);
  919.             PUSH(x);
  920.             if (x != NULL) continue;
  921.             break;
  922.         
  923.         case SLICE+0:
  924.         case SLICE+1:
  925.         case SLICE+2:
  926.         case SLICE+3:
  927.             if ((opcode-SLICE) & 2)
  928.                 w = POP();
  929.             else
  930.                 w = NULL;
  931.             if ((opcode-SLICE) & 1)
  932.                 v = POP();
  933.             else
  934.                 v = NULL;
  935.             u = POP();
  936.             x = apply_slice(u, v, w);
  937.             Py_DECREF(u);
  938.             Py_XDECREF(v);
  939.             Py_XDECREF(w);
  940.             PUSH(x);
  941.             if (x != NULL) continue;
  942.             break;
  943.         
  944.         case STORE_SLICE+0:
  945.         case STORE_SLICE+1:
  946.         case STORE_SLICE+2:
  947.         case STORE_SLICE+3:
  948.             if ((opcode-STORE_SLICE) & 2)
  949.                 w = POP();
  950.             else
  951.                 w = NULL;
  952.             if ((opcode-STORE_SLICE) & 1)
  953.                 v = POP();
  954.             else
  955.                 v = NULL;
  956.             u = POP();
  957.             t = POP();
  958.             err = assign_slice(u, v, w, t); /* u[v:w] = t */
  959.             Py_DECREF(t);
  960.             Py_DECREF(u);
  961.             Py_XDECREF(v);
  962.             Py_XDECREF(w);
  963.             if (err == 0) continue;
  964.             break;
  965.         
  966.         case DELETE_SLICE+0:
  967.         case DELETE_SLICE+1:
  968.         case DELETE_SLICE+2:
  969.         case DELETE_SLICE+3:
  970.             if ((opcode-DELETE_SLICE) & 2)
  971.                 w = POP();
  972.             else
  973.                 w = NULL;
  974.             if ((opcode-DELETE_SLICE) & 1)
  975.                 v = POP();
  976.             else
  977.                 v = NULL;
  978.             u = POP();
  979.             err = assign_slice(u, v, w, (PyObject *)NULL);
  980.                             /* del u[v:w] */
  981.             Py_DECREF(u);
  982.             Py_XDECREF(v);
  983.             Py_XDECREF(w);
  984.             if (err == 0) continue;
  985.             break;
  986.         
  987.         case STORE_SUBSCR:
  988.             w = POP();
  989.             v = POP();
  990.             u = POP();
  991.             /* v[w] = u */
  992.             err = PyObject_SetItem(v, w, u);
  993.             Py_DECREF(u);
  994.             Py_DECREF(v);
  995.             Py_DECREF(w);
  996.             if (err == 0) continue;
  997.             break;
  998.         
  999.         case DELETE_SUBSCR:
  1000.             w = POP();
  1001.             v = POP();
  1002.             /* del v[w] */
  1003.             err = PyObject_DelItem(v, w);
  1004.             Py_DECREF(v);
  1005.             Py_DECREF(w);
  1006.             if (err == 0) continue;
  1007.             break;
  1008.         
  1009.         case PRINT_EXPR:
  1010.             v = POP();
  1011.             /* Print value except if None */
  1012.             /* After printing, also assign to '_' */
  1013.             /* Before, set '_' to None to avoid recursion */
  1014.             if (v != Py_None &&
  1015.                 (err = PyDict_SetItemString(
  1016.                     f->f_builtins, "_", Py_None)) == 0) {
  1017.                 err = Py_FlushLine();
  1018.                 if (err == 0) {
  1019.                     x = PySys_GetObject("stdout");
  1020.                     if (x == NULL) {
  1021.                         PyErr_SetString(
  1022.                             PyExc_RuntimeError,
  1023.                             "lost sys.stdout");
  1024.                         err = -1;
  1025.                     }
  1026.                 }
  1027.                 if (err == 0)
  1028.                     err = PyFile_WriteObject(v, x, 0);
  1029.                 if (err == 0) {
  1030.                     PyFile_SoftSpace(x, 1);
  1031.                     err = Py_FlushLine();
  1032.                 }
  1033.                 if (err == 0) {
  1034.                     err = PyDict_SetItemString(
  1035.                         f->f_builtins, "_", v);
  1036.                 }
  1037.             }
  1038.             Py_DECREF(v);
  1039.             break;
  1040.         
  1041.         case PRINT_ITEM:
  1042.             v = POP();
  1043.             w = PySys_GetObject("stdout");
  1044.             if (w == NULL) {
  1045.                 PyErr_SetString(PyExc_RuntimeError,
  1046.                         "lost sys.stdout");
  1047.                 err = -1;
  1048.             }
  1049.             else if (PyFile_SoftSpace(w, 1))
  1050.                 err = PyFile_WriteString(" ", w);
  1051.             if (err == 0)
  1052.                 err = PyFile_WriteObject(v, w, Py_PRINT_RAW);
  1053.             if (err == 0 && PyString_Check(v)) {
  1054.                 /* XXX move into writeobject() ? */
  1055.                 char *s = PyString_AsString(v);
  1056.                 int len = PyString_Size(v);
  1057.                 if (len > 0 &&
  1058.                     isspace(Py_CHARMASK(s[len-1])) &&
  1059.                     s[len-1] != ' ')
  1060.                     PyFile_SoftSpace(w, 0);
  1061.             }
  1062.             Py_DECREF(v);
  1063.             if (err == 0) continue;
  1064.             break;
  1065.         
  1066.         case PRINT_NEWLINE:
  1067.             x = PySys_GetObject("stdout");
  1068.             if (x == NULL)
  1069.                 PyErr_SetString(PyExc_RuntimeError,
  1070.                         "lost sys.stdout");
  1071.             else {
  1072.                 err = PyFile_WriteString("\n", x);
  1073.                 if (err == 0)
  1074.                     PyFile_SoftSpace(x, 0);
  1075.             }
  1076.             break;
  1077.         
  1078.         case BREAK_LOOP:
  1079.             why = WHY_BREAK;
  1080.             break;
  1081.  
  1082.         case RAISE_VARARGS:
  1083.             u = v = w = NULL;
  1084.             switch (oparg) {
  1085.             case 3:
  1086.                 u = POP(); /* traceback */
  1087.                 /* Fallthrough */
  1088.             case 2:
  1089.                 v = POP(); /* value */
  1090.                 /* Fallthrough */
  1091.             case 1:
  1092.                 w = POP(); /* exc */
  1093.             case 0: /* Fallthrough */
  1094.                 why = do_raise(w, v, u);
  1095.                 break;
  1096.             default:
  1097.                 PyErr_SetString(PyExc_SystemError,
  1098.                        "bad RAISE_VARARGS oparg");
  1099.                 why = WHY_EXCEPTION;
  1100.                 break;
  1101.             }
  1102.             break;
  1103.         
  1104.         case LOAD_LOCALS:
  1105.             if ((x = f->f_locals) == NULL) {
  1106.                 PyErr_SetString(PyExc_SystemError,
  1107.                         "no locals");
  1108.                 break;
  1109.             }
  1110.             Py_INCREF(x);
  1111.             PUSH(x);
  1112.             break;
  1113.         
  1114.         case RETURN_VALUE:
  1115.             retval = POP();
  1116.             why = WHY_RETURN;
  1117.             break;
  1118.  
  1119.         case EXEC_STMT:
  1120.             w = POP();
  1121.             v = POP();
  1122.             u = POP();
  1123.             err = exec_statement(f, u, v, w);
  1124.             Py_DECREF(u);
  1125.             Py_DECREF(v);
  1126.             Py_DECREF(w);
  1127.             break;
  1128.         
  1129.         case POP_BLOCK:
  1130.             {
  1131.                 PyTryBlock *b = PyFrame_BlockPop(f);
  1132.                 while (STACK_LEVEL() > b->b_level) {
  1133.                     v = POP();
  1134.                     Py_DECREF(v);
  1135.                 }
  1136.             }
  1137.             break;
  1138.         
  1139.         case END_FINALLY:
  1140.             v = POP();
  1141.             if (PyInt_Check(v)) {
  1142.                 why = (enum why_code) PyInt_AsLong(v);
  1143.                 if (why == WHY_RETURN)
  1144.                     retval = POP();
  1145.             }
  1146.             else if (PyString_Check(v) || PyClass_Check(v)) {
  1147.                 w = POP();
  1148.                 u = POP();
  1149.                 PyErr_Restore(v, w, u);
  1150.                 why = WHY_RERAISE;
  1151.                 break;
  1152.             }
  1153.             else if (v != Py_None) {
  1154.                 PyErr_SetString(PyExc_SystemError,
  1155.                     "'finally' pops bad exception");
  1156.                 why = WHY_EXCEPTION;
  1157.             }
  1158.             Py_DECREF(v);
  1159.             break;
  1160.         
  1161.         case BUILD_CLASS:
  1162.             u = POP();
  1163.             v = POP();
  1164.             w = POP();
  1165.             x = build_class(u, v, w);
  1166.             PUSH(x);
  1167.             Py_DECREF(u);
  1168.             Py_DECREF(v);
  1169.             Py_DECREF(w);
  1170.             break;
  1171.         
  1172.         case STORE_NAME:
  1173.             w = GETNAMEV(oparg);
  1174.             v = POP();
  1175.             if ((x = f->f_locals) == NULL) {
  1176.                 PyErr_SetString(PyExc_SystemError,
  1177.                         "no locals");
  1178.                 break;
  1179.             }
  1180.             err = PyDict_SetItem(x, w, v);
  1181.             Py_DECREF(v);
  1182.             break;
  1183.         
  1184.         case DELETE_NAME:
  1185.             w = GETNAMEV(oparg);
  1186.             if ((x = f->f_locals) == NULL) {
  1187.                 PyErr_SetString(PyExc_SystemError,
  1188.                         "no locals");
  1189.                 break;
  1190.             }
  1191.             if ((err = PyDict_DelItem(x, w)) != 0)
  1192.                 PyErr_SetObject(PyExc_NameError, w);
  1193.             break;
  1194.  
  1195. #ifdef CASE_TOO_BIG
  1196.         default: switch (opcode) {
  1197. #endif
  1198.         
  1199.         case UNPACK_TUPLE:
  1200.         case UNPACK_LIST:
  1201.             v = POP();
  1202.             if (PyTuple_Check(v)) {
  1203.                 if (PyTuple_Size(v) != oparg) {
  1204.                     PyErr_SetString(PyExc_ValueError,
  1205.                          "unpack tuple of wrong size");
  1206.                     why = WHY_EXCEPTION;
  1207.                 }
  1208.                 else {
  1209.                     for (; --oparg >= 0; ) {
  1210.                         w = PyTuple_GET_ITEM(v, oparg);
  1211.                         Py_INCREF(w);
  1212.                         PUSH(w);
  1213.                     }
  1214.                 }
  1215.             }
  1216.             else if (PyList_Check(v)) {
  1217.                 if (PyList_Size(v) != oparg) {
  1218.                     PyErr_SetString(PyExc_ValueError,
  1219.                           "unpack list of wrong size");
  1220.                     why = WHY_EXCEPTION;
  1221.                 }
  1222.                 else {
  1223.                     for (; --oparg >= 0; ) {
  1224.                         w = PyList_GET_ITEM(v, oparg);
  1225.                         Py_INCREF(w);
  1226.                         PUSH(w);
  1227.                     }
  1228.                 }
  1229.             }
  1230.             else if (PySequence_Check(v)) {
  1231.                 if (unpack_sequence(v, oparg,
  1232.                             stack_pointer + oparg))
  1233.                     stack_pointer += oparg;
  1234.                 else
  1235.                     why = WHY_EXCEPTION;
  1236.             }
  1237.             else {
  1238.                 PyErr_SetString(PyExc_TypeError,
  1239.                         "unpack non-sequence");
  1240.                 why = WHY_EXCEPTION;
  1241.             }
  1242.             Py_DECREF(v);
  1243.             break;
  1244.         
  1245.         case STORE_ATTR:
  1246.             w = GETNAMEV(oparg);
  1247.             v = POP();
  1248.             u = POP();
  1249.             err = PyObject_SetAttr(v, w, u); /* v.w = u */
  1250.             Py_DECREF(v);
  1251.             Py_DECREF(u);
  1252.             break;
  1253.         
  1254.         case DELETE_ATTR:
  1255.             w = GETNAMEV(oparg);
  1256.             v = POP();
  1257.             err = PyObject_SetAttr(v, w, (PyObject *)NULL);
  1258.                             /* del v.w */
  1259.             Py_DECREF(v);
  1260.             break;
  1261.         
  1262.         case STORE_GLOBAL:
  1263.             w = GETNAMEV(oparg);
  1264.             v = POP();
  1265.             err = PyDict_SetItem(f->f_globals, w, v);
  1266.             Py_DECREF(v);
  1267.             break;
  1268.         
  1269.         case DELETE_GLOBAL:
  1270.             w = GETNAMEV(oparg);
  1271.             if ((err = PyDict_DelItem(f->f_globals, w)) != 0)
  1272.                 PyErr_SetObject(PyExc_NameError, w);
  1273.             break;
  1274.         
  1275.         case LOAD_CONST:
  1276.             x = GETCONST(oparg);
  1277.             Py_INCREF(x);
  1278.             PUSH(x);
  1279.             break;
  1280.         
  1281.         case LOAD_NAME:
  1282.             w = GETNAMEV(oparg);
  1283.             if ((x = f->f_locals) == NULL) {
  1284.                 PyErr_SetString(PyExc_SystemError,
  1285.                         "no locals");
  1286.                 break;
  1287.             }
  1288.             x = PyDict_GetItem(x, w);
  1289.             if (x == NULL) {
  1290.                 PyErr_Clear();
  1291.                 x = PyDict_GetItem(f->f_globals, w);
  1292.                 if (x == NULL) {
  1293.                     PyErr_Clear();
  1294.                     x = PyDict_GetItem(f->f_builtins, w);
  1295.                     if (x == NULL) {
  1296.                         PyErr_SetObject(
  1297.                             PyExc_NameError, w);
  1298.                         break;
  1299.                     }
  1300.                 }
  1301.             }
  1302.             Py_INCREF(x);
  1303.             PUSH(x);
  1304.             break;
  1305.         
  1306.         case LOAD_GLOBAL:
  1307.             w = GETNAMEV(oparg);
  1308.             x = PyDict_GetItem(f->f_globals, w);
  1309.             if (x == NULL) {
  1310.                 PyErr_Clear();
  1311.                 x = PyDict_GetItem(f->f_builtins, w);
  1312.                 if (x == NULL) {
  1313.                     PyErr_SetObject(PyExc_NameError, w);
  1314.                     break;
  1315.                 }
  1316.             }
  1317.             Py_INCREF(x);
  1318.             PUSH(x);
  1319.             break;
  1320.  
  1321.         case LOAD_FAST:
  1322.             x = GETLOCAL(oparg);
  1323.             if (x == NULL) {
  1324.                 PyErr_SetObject(PyExc_NameError,
  1325.                        PyTuple_GetItem(co->co_varnames,
  1326.                             oparg));
  1327.                 break;
  1328.             }
  1329.             Py_INCREF(x);
  1330.             PUSH(x);
  1331.             if (x != NULL) continue;
  1332.             break;
  1333.  
  1334.         case STORE_FAST:
  1335.             v = POP();
  1336.             SETLOCAL(oparg, v);
  1337.             continue;
  1338.  
  1339.         case DELETE_FAST:
  1340.             x = GETLOCAL(oparg);
  1341.             if (x == NULL) {
  1342.                 PyErr_SetObject(PyExc_NameError,
  1343.                     PyTuple_GetItem(co->co_varnames,
  1344.                         oparg));
  1345.                 break;
  1346.             }
  1347.             SETLOCAL(oparg, NULL);
  1348.             continue;
  1349.         
  1350.         case BUILD_TUPLE:
  1351.             x = PyTuple_New(oparg);
  1352.             if (x != NULL) {
  1353.                 for (; --oparg >= 0;) {
  1354.                     w = POP();
  1355.                     PyTuple_SET_ITEM(x, oparg, w);
  1356.                 }
  1357.                 PUSH(x);
  1358.                 continue;
  1359.             }
  1360.             break;
  1361.         
  1362.         case BUILD_LIST:
  1363.             x =  PyList_New(oparg);
  1364.             if (x != NULL) {
  1365.                 for (; --oparg >= 0;) {
  1366.                     w = POP();
  1367.                     err = PyList_SetItem(x, oparg, w);
  1368.                     if (err != 0)
  1369.                         break;
  1370.                 }
  1371.                 PUSH(x);
  1372.                 continue;
  1373.             }
  1374.             break;
  1375.         
  1376.         case BUILD_MAP:
  1377.             x = PyDict_New();
  1378.             PUSH(x);
  1379.             if (x != NULL) continue;
  1380.             break;
  1381.         
  1382.         case LOAD_ATTR:
  1383.             w = GETNAMEV(oparg);
  1384.             v = POP();
  1385.             x = PyObject_GetAttr(v, w);
  1386.             Py_DECREF(v);
  1387.             PUSH(x);
  1388.             if (x != NULL) continue;
  1389.             break;
  1390.         
  1391.         case COMPARE_OP:
  1392.             w = POP();
  1393.             v = POP();
  1394.             if (PyInt_Check(v) && PyInt_Check(w)) {
  1395.                 /* INLINE: cmp(int, int) */
  1396.                 register long a, b;
  1397.                 register int res;
  1398.                 a = ((PyIntObject*) v)->ob_ival;
  1399.                 b = ((PyIntObject*) w)->ob_ival;
  1400.                 switch (oparg) {
  1401.                 case LT: res = a <  b; break;
  1402.                 case LE: res = a <= b; break;
  1403.                 case EQ: res = a == b; break;
  1404.                 case NE: res = a != b; break;
  1405.                 case GT: res = a >  b; break;
  1406.                 case GE: res = a >= b; break;
  1407.                 case IS: res = v == w; break;
  1408.                 case IS_NOT: res = v != w; break;
  1409.                 default: goto slow_compare;
  1410.                 }
  1411.                 x = res ? Py_True : Py_False;
  1412.                 Py_INCREF(x);
  1413.             }
  1414.             else {
  1415.               slow_compare:
  1416.                 x = cmp_outcome(oparg, v, w);
  1417.             }
  1418.             Py_DECREF(v);
  1419.             Py_DECREF(w);
  1420.             PUSH(x);
  1421.             if (x != NULL) continue;
  1422.             break;
  1423.         
  1424.         case IMPORT_NAME:
  1425.             w = GETNAMEV(oparg);
  1426.             x = PyDict_GetItemString(f->f_builtins, "__import__");
  1427.             if (x == NULL) {
  1428.                 PyErr_SetString(PyExc_ImportError,
  1429.                         "__import__ not found");
  1430.                 break;
  1431.             }
  1432.             u = find_from_args(f, INSTR_OFFSET());
  1433.             if (u == NULL) {
  1434.                 x = u;
  1435.                 break;
  1436.             }
  1437.             w = Py_BuildValue("(OOOO)",
  1438.                     w,
  1439.                     f->f_globals,
  1440.                     f->f_locals == NULL ?
  1441.                       Py_None : f->f_locals,
  1442.                     u);
  1443.             Py_DECREF(u);
  1444.             if (w == NULL) {
  1445.                 x = NULL;
  1446.                 break;
  1447.             }
  1448.             x = PyEval_CallObject(x, w);
  1449.             Py_DECREF(w);
  1450.             PUSH(x);
  1451.             if (x != NULL) continue;
  1452.             break;
  1453.         
  1454.         case IMPORT_FROM:
  1455.             w = GETNAMEV(oparg);
  1456.             v = TOP();
  1457.             PyFrame_FastToLocals(f);
  1458.             if ((x = f->f_locals) == NULL) {
  1459.                 PyErr_SetString(PyExc_SystemError,
  1460.                         "no locals");
  1461.                 break;
  1462.             }
  1463.             err = import_from(x, v, w);
  1464.             PyFrame_LocalsToFast(f, 0);
  1465.             if (err == 0) continue;
  1466.             break;
  1467.  
  1468.         case JUMP_FORWARD:
  1469.             JUMPBY(oparg);
  1470.             continue;
  1471.         
  1472.         case JUMP_IF_FALSE:
  1473.             err = PyObject_IsTrue(TOP());
  1474.             if (err > 0)
  1475.                 err = 0;
  1476.             else if (err == 0)
  1477.                 JUMPBY(oparg);
  1478.             else
  1479.                 break;
  1480.             continue;
  1481.         
  1482.         case JUMP_IF_TRUE:
  1483.             err = PyObject_IsTrue(TOP());
  1484.             if (err > 0) {
  1485.                 err = 0;
  1486.                 JUMPBY(oparg);
  1487.             }
  1488.             else if (err == 0)
  1489.                 ;
  1490.             else
  1491.                 break;
  1492.             continue;
  1493.         
  1494.         case JUMP_ABSOLUTE:
  1495.             JUMPTO(oparg);
  1496.             continue;
  1497.         
  1498.         case FOR_LOOP:
  1499.             /* for v in s: ...
  1500.                On entry: stack contains s, i.
  1501.                On exit: stack contains s, i+1, s[i];
  1502.                but if loop exhausted:
  1503.                    s, i are popped, and we jump */
  1504.             w = POP(); /* Loop index */
  1505.             v = POP(); /* Sequence object */
  1506.             u = loop_subscript(v, w);
  1507.             if (u != NULL) {
  1508.                 PUSH(v);
  1509.                 x = PyInt_FromLong(PyInt_AsLong(w)+1);
  1510.                 PUSH(x);
  1511.                 Py_DECREF(w);
  1512.                 PUSH(u);
  1513.                 if (x != NULL) continue;
  1514.             }
  1515.             else {
  1516.                 Py_DECREF(v);
  1517.                 Py_DECREF(w);
  1518.                 /* A NULL can mean "s exhausted"
  1519.                    but also an error: */
  1520.                 if (PyErr_Occurred())
  1521.                     why = WHY_EXCEPTION;
  1522.                 else {
  1523.                     JUMPBY(oparg);
  1524.                     continue;
  1525.                 }
  1526.             }
  1527.             break;
  1528.         
  1529.         case SETUP_LOOP:
  1530.         case SETUP_EXCEPT:
  1531.         case SETUP_FINALLY:
  1532.             PyFrame_BlockSetup(f, opcode, INSTR_OFFSET() + oparg,
  1533.                         STACK_LEVEL());
  1534.             continue;
  1535.         
  1536.         case SET_LINENO:
  1537. #ifdef LLTRACE
  1538.             if (lltrace)
  1539.                 printf("--- %s:%d \n", filename, oparg);
  1540. #endif
  1541.             f->f_lineno = oparg;
  1542.             if (f->f_trace == NULL)
  1543.                 continue;
  1544.             /* Trace each line of code reached */
  1545.             f->f_lasti = INSTR_OFFSET();
  1546.             err = call_trace(&f->f_trace, &f->f_trace,
  1547.                      f, "line", Py_None);
  1548.             break;
  1549.  
  1550.         case CALL_FUNCTION:
  1551.         {
  1552.             int na = oparg & 0xff;
  1553.             int nk = (oparg>>8) & 0xff;
  1554.             int n = na + 2*nk;
  1555.             PyObject **pfunc = stack_pointer - n - 1;
  1556.             PyObject *func = *pfunc;
  1557.             PyObject *self = NULL;
  1558.             PyObject *class = NULL;
  1559.             f->f_lasti = INSTR_OFFSET() - 3; /* For tracing */
  1560.             if (PyMethod_Check(func)) {
  1561.                 self = PyMethod_Self(func);
  1562.                 class = PyMethod_Class(func);
  1563.                 func = PyMethod_Function(func);
  1564.                 Py_INCREF(func);
  1565.                 if (self != NULL) {
  1566.                     Py_INCREF(self);
  1567.                     Py_DECREF(*pfunc);
  1568.                     *pfunc = self;
  1569.                     na++;
  1570.                     n++;
  1571.                 }
  1572.                 else {
  1573.                     /* Unbound methods must be
  1574.                        called with an instance of
  1575.                        the class (or a derived
  1576.                        class) as first argument */
  1577.                     if (na > 0 &&
  1578.                         (self = stack_pointer[-n])
  1579.                          != NULL &&
  1580.                         PyInstance_Check(self) &&
  1581.                         PyClass_IsSubclass(
  1582.                             (PyObject *)
  1583.                             (((PyInstanceObject *)self)
  1584.                              ->in_class),
  1585.                             class))
  1586.                         /* Handy-dandy */ ;
  1587.                     else {
  1588.                         PyErr_SetString(
  1589.                             PyExc_TypeError,
  1590.        "unbound method must be called with class instance 1st argument");
  1591.                         x = NULL;
  1592.                         break;
  1593.                     }
  1594.                 }
  1595.             }
  1596.             else
  1597.                 Py_INCREF(func);
  1598.             if (PyFunction_Check(func)) {
  1599.                 PyObject *co = PyFunction_GetCode(func);
  1600.                 PyObject *globals =
  1601.                     PyFunction_GetGlobals(func);
  1602.                 PyObject *argdefs =
  1603.                     PyFunction_GetDefaults(func);
  1604.                 PyObject **d;
  1605.                 int nd;
  1606.                 if (argdefs != NULL) {
  1607.                     d = &PyTuple_GET_ITEM(argdefs, 0);
  1608.                     nd = ((PyTupleObject *)argdefs) ->
  1609.                         ob_size;
  1610.                 }
  1611.                 else {
  1612.                     d = NULL;
  1613.                     nd = 0;
  1614.                 }
  1615.                 x = eval_code2(
  1616.                     (PyCodeObject *)co,
  1617.                     globals, (PyObject *)NULL,
  1618.                     stack_pointer-n, na,
  1619.                     stack_pointer-2*nk, nk,
  1620.                     d, nd,
  1621.                     class);
  1622.             }
  1623.             else {
  1624.                 PyObject *args = PyTuple_New(na);
  1625.                 PyObject *kwdict = NULL;
  1626.                 if (args == NULL) {
  1627.                     x = NULL;
  1628.                     break;
  1629.                 }
  1630.                 if (nk > 0) {
  1631.                     kwdict = PyDict_New();
  1632.                     if (kwdict == NULL) {
  1633.                         x = NULL;
  1634.                         break;
  1635.                     }
  1636.                     err = 0;
  1637.                     while (--nk >= 0) {
  1638.                         PyObject *value = POP();
  1639.                         PyObject *key = POP();
  1640.                         err = PyDict_SetItem(
  1641.                             kwdict, key, value);
  1642.                         Py_DECREF(key);
  1643.                         Py_DECREF(value);
  1644.                         if (err)
  1645.                             break;
  1646.                     }
  1647.                     if (err) {
  1648.                         Py_DECREF(args);
  1649.                         Py_DECREF(kwdict);
  1650.                         break;
  1651.                     }
  1652.                 }
  1653.                 while (--na >= 0) {
  1654.                     w = POP();
  1655.                     PyTuple_SET_ITEM(args, na, w);
  1656.                 }
  1657.                 x = PyEval_CallObjectWithKeywords(
  1658.                     func, args, kwdict);
  1659.                 Py_DECREF(args);
  1660.                 Py_XDECREF(kwdict);
  1661.             }
  1662.             Py_DECREF(func);
  1663.             while (stack_pointer > pfunc) {
  1664.                 w = POP();
  1665.                 Py_DECREF(w);
  1666.             }
  1667.             PUSH(x);
  1668.             if (x != NULL) continue;
  1669.             break;
  1670.         }
  1671.         
  1672.         case MAKE_FUNCTION:
  1673.             v = POP(); /* code object */
  1674.             x = PyFunction_New(v, f->f_globals);
  1675.             Py_DECREF(v);
  1676.             /* XXX Maybe this should be a separate opcode? */
  1677.             if (x != NULL && oparg > 0) {
  1678.                 v = PyTuple_New(oparg);
  1679.                 if (v == NULL) {
  1680.                     Py_DECREF(x);
  1681.                     x = NULL;
  1682.                     break;
  1683.                 }
  1684.                 while (--oparg >= 0) {
  1685.                     w = POP();
  1686.                     PyTuple_SET_ITEM(v, oparg, w);
  1687.                 }
  1688.                 err = PyFunction_SetDefaults(x, v);
  1689.                 Py_DECREF(v);
  1690.             }
  1691.             PUSH(x);
  1692.             break;
  1693.  
  1694.         case BUILD_SLICE:
  1695.             if (oparg == 3)
  1696.                 w = POP();
  1697.             else
  1698.                 w = NULL;
  1699.             v = POP();
  1700.             u = POP();
  1701.             x = PySlice_New(u, v, w);
  1702.             Py_DECREF(u);
  1703.             Py_DECREF(v);
  1704.             Py_XDECREF(w);
  1705.             PUSH(x);
  1706.             if (x != NULL) continue;
  1707.             break;
  1708.  
  1709.  
  1710.         default:
  1711.             fprintf(stderr,
  1712.                 "XXX lineno: %d, opcode: %d\n",
  1713.                 f->f_lineno, opcode);
  1714.             PyErr_SetString(PyExc_SystemError, "unknown opcode");
  1715.             why = WHY_EXCEPTION;
  1716.             break;
  1717.  
  1718. #ifdef CASE_TOO_BIG
  1719.         }
  1720. #endif
  1721.  
  1722.         } /* switch */
  1723.  
  1724.         on_error:
  1725.         
  1726.         /* Quickly continue if no error occurred */
  1727.         
  1728.         if (why == WHY_NOT) {
  1729.             if (err == 0 && x != NULL) {
  1730. #ifdef CHECKEXC
  1731.                 if (PyErr_Occurred())
  1732.                     fprintf(stderr,
  1733.                         "XXX undetected error\n");
  1734.                 else
  1735. #endif
  1736.                     continue; /* Normal, fast path */
  1737.             }
  1738.             why = WHY_EXCEPTION;
  1739.             x = Py_None;
  1740.             err = 0;
  1741.         }
  1742.  
  1743. #ifdef CHECKEXC
  1744.         /* Double-check exception status */
  1745.         
  1746.         if (why == WHY_EXCEPTION || why == WHY_RERAISE) {
  1747.             if (!PyErr_Occurred()) {
  1748.                 fprintf(stderr, "XXX ghost error\n");
  1749.                 PyErr_SetString(PyExc_SystemError,
  1750.                         "ghost error");
  1751.                 why = WHY_EXCEPTION;
  1752.             }
  1753.         }
  1754.         else {
  1755.             if (PyErr_Occurred()) {
  1756.                 fprintf(stderr,
  1757.                     "XXX undetected error (why=%d)\n",
  1758.                     why);
  1759.                 why = WHY_EXCEPTION;
  1760.             }
  1761.         }
  1762. #endif
  1763.  
  1764.         /* Log traceback info if this is a real exception */
  1765.         
  1766.         if (why == WHY_EXCEPTION) {
  1767.             f->f_lasti = INSTR_OFFSET() - 1;
  1768.             if (HAS_ARG(opcode))
  1769.                 f->f_lasti -= 2;
  1770.             PyTraceBack_Here(f);
  1771.  
  1772.             if (f->f_trace)
  1773.                 call_exc_trace(&f->f_trace, &f->f_trace, f);
  1774.             if (tstate->sys_profilefunc)
  1775.                 call_exc_trace(&tstate->sys_profilefunc,
  1776.                            (PyObject**)0, f);
  1777. }
  1778.         
  1779.         /* For the rest, treat WHY_RERAISE as WHY_EXCEPTION */
  1780.         
  1781.         if (why == WHY_RERAISE)
  1782.             why = WHY_EXCEPTION;
  1783.  
  1784.         /* Unwind stacks if a (pseudo) exception occurred */
  1785.         
  1786.         while (why != WHY_NOT && f->f_iblock > 0) {
  1787.             PyTryBlock *b = PyFrame_BlockPop(f);
  1788.             while (STACK_LEVEL() > b->b_level) {
  1789.                 v = POP();
  1790.                 Py_XDECREF(v);
  1791.             }
  1792.             if (b->b_type == SETUP_LOOP && why == WHY_BREAK) {
  1793.                 why = WHY_NOT;
  1794.                 JUMPTO(b->b_handler);
  1795.                 break;
  1796.             }
  1797.             if (b->b_type == SETUP_FINALLY ||
  1798.                 (b->b_type == SETUP_EXCEPT &&
  1799.                  why == WHY_EXCEPTION)) {
  1800.                 if (why == WHY_EXCEPTION) {
  1801.                     PyObject *exc, *val, *tb;
  1802.                     PyErr_Fetch(&exc, &val, &tb);
  1803.                     if (val == NULL) {
  1804.                         val = Py_None;
  1805.                         Py_INCREF(val);
  1806.                     }
  1807.                     /* Make the raw exception data
  1808.                        available to the handler,
  1809.                        so a program can emulate the
  1810.                        Python main loop.  Don't do
  1811.                        this for 'finally'. */
  1812.                     if (b->b_type == SETUP_EXCEPT) {
  1813.                         PyErr_NormalizeException(
  1814.                             &exc, &val, &tb);
  1815.                         set_exc_info(tstate,
  1816.                                  exc, val, tb);
  1817.                     }
  1818.                     PUSH(tb);
  1819.                     PUSH(val);
  1820.                     PUSH(exc);
  1821.                 }
  1822.                 else {
  1823.                     if (why == WHY_RETURN)
  1824.                         PUSH(retval);
  1825.                     v = PyInt_FromLong((long)why);
  1826.                     PUSH(v);
  1827.                 }
  1828.                 why = WHY_NOT;
  1829.                 JUMPTO(b->b_handler);
  1830.                 break;
  1831.             }
  1832.         } /* unwind stack */
  1833.  
  1834.         /* End the loop if we still have an error (or return) */
  1835.         
  1836.         if (why != WHY_NOT)
  1837.             break;
  1838.         
  1839.     } /* main loop */
  1840.     
  1841.     /* Pop remaining stack entries */
  1842.     
  1843.     while (!EMPTY()) {
  1844.         v = POP();
  1845.         Py_XDECREF(v);
  1846.     }
  1847.     
  1848.     if (why != WHY_RETURN)
  1849.         retval = NULL;
  1850.     
  1851.     if (f->f_trace) {
  1852.         if (why == WHY_RETURN) {
  1853.             if (call_trace(&f->f_trace, &f->f_trace, f,
  1854.                        "return", retval)) {
  1855.                 Py_XDECREF(retval);
  1856.                 retval = NULL;
  1857.                 why = WHY_EXCEPTION;
  1858.             }
  1859.         }
  1860.     }
  1861.     
  1862.     if (tstate->sys_profilefunc && why == WHY_RETURN) {
  1863.         if (call_trace(&tstate->sys_profilefunc, (PyObject**)0,
  1864.                    f, "return", retval)) {
  1865.             Py_XDECREF(retval);
  1866.             retval = NULL;
  1867.             why = WHY_EXCEPTION;
  1868.         }
  1869.     }
  1870.  
  1871.     reset_exc_info(tstate);
  1872.  
  1873.     --tstate->recursion_depth;
  1874.  
  1875.   fail: /* Jump here from prelude on failure */
  1876.     
  1877.     /* Restore previous frame and release the current one */
  1878.  
  1879.     tstate->frame = f->f_back;
  1880.     Py_DECREF(f);
  1881.     
  1882.     return retval;
  1883. }
  1884.  
  1885. static void
  1886. set_exc_info(tstate, type, value, tb)
  1887.     PyThreadState *tstate;
  1888.     PyObject *type;
  1889.     PyObject *value;
  1890.     PyObject *tb;
  1891. {
  1892.     PyFrameObject *frame;
  1893.     PyObject *tmp_type, *tmp_value, *tmp_tb;
  1894.  
  1895.     frame = tstate->frame;
  1896.     if (frame->f_exc_type == NULL) {
  1897.         /* This frame didn't catch an exception before */
  1898.         /* Save previous exception of this thread in this frame */
  1899.         if (tstate->exc_type == NULL) {
  1900.             Py_INCREF(Py_None);
  1901.             tstate->exc_type = Py_None;
  1902.         }
  1903.         tmp_type = frame->f_exc_type;
  1904.         tmp_value = frame->f_exc_value;
  1905.         tmp_tb = frame->f_exc_traceback;
  1906.         Py_XINCREF(tstate->exc_type);
  1907.         Py_XINCREF(tstate->exc_value);
  1908.         Py_XINCREF(tstate->exc_traceback);
  1909.         frame->f_exc_type = tstate->exc_type;
  1910.         frame->f_exc_value = tstate->exc_value;
  1911.         frame->f_exc_traceback = tstate->exc_traceback;
  1912.         Py_XDECREF(tmp_type);
  1913.         Py_XDECREF(tmp_value);
  1914.         Py_XDECREF(tmp_tb);
  1915.     }
  1916.     /* Set new exception for this thread */
  1917.     tmp_type = tstate->exc_type;
  1918.     tmp_value = tstate->exc_value;
  1919.     tmp_tb = tstate->exc_traceback;
  1920.     Py_XINCREF(type);
  1921.     Py_XINCREF(value);
  1922.     Py_XINCREF(tb);
  1923.     tstate->exc_type = type;
  1924.     tstate->exc_value = value;
  1925.     tstate->exc_traceback = tb;
  1926.     Py_XDECREF(tmp_type);
  1927.     Py_XDECREF(tmp_value);
  1928.     Py_XDECREF(tmp_tb);
  1929.     /* For b/w compatibility */
  1930.     PySys_SetObject("exc_type", type);
  1931.     PySys_SetObject("exc_value", value);
  1932.     PySys_SetObject("exc_traceback", tb);
  1933. }
  1934.  
  1935. static void
  1936. reset_exc_info(tstate)
  1937.     PyThreadState *tstate;
  1938. {
  1939.     PyFrameObject *frame;
  1940.     PyObject *tmp_type, *tmp_value, *tmp_tb;
  1941.     frame = tstate->frame;
  1942.     if (frame->f_exc_type != NULL) {
  1943.         /* This frame caught an exception */
  1944.         tmp_type = tstate->exc_type;
  1945.         tmp_value = tstate->exc_value;
  1946.         tmp_tb = tstate->exc_traceback;
  1947.         Py_XINCREF(frame->f_exc_type);
  1948.         Py_XINCREF(frame->f_exc_value);
  1949.         Py_XINCREF(frame->f_exc_traceback);
  1950.         tstate->exc_type = frame->f_exc_type;
  1951.         tstate->exc_value = frame->f_exc_value;
  1952.         tstate->exc_traceback = frame->f_exc_traceback;
  1953.         Py_XDECREF(tmp_type);
  1954.         Py_XDECREF(tmp_value);
  1955.         Py_XDECREF(tmp_tb);
  1956.         /* For b/w compatibility */
  1957.         PySys_SetObject("exc_type", frame->f_exc_type);
  1958.         PySys_SetObject("exc_value", frame->f_exc_value);
  1959.         PySys_SetObject("exc_traceback", frame->f_exc_traceback);
  1960.     }
  1961.     tmp_type = frame->f_exc_type;
  1962.     tmp_value = frame->f_exc_value;
  1963.     tmp_tb = frame->f_exc_traceback;
  1964.     frame->f_exc_type = NULL;
  1965.     frame->f_exc_value = NULL;
  1966.     frame->f_exc_traceback = NULL;
  1967.     Py_XDECREF(tmp_type);
  1968.     Py_XDECREF(tmp_value);
  1969.     Py_XDECREF(tmp_tb);
  1970. }
  1971.  
  1972. /* Logic for the raise statement (too complicated for inlining).
  1973.    This *consumes* a reference count to each of its arguments. */
  1974. static enum why_code
  1975. do_raise(type, value, tb)
  1976.     PyObject *type, *value, *tb;
  1977. {
  1978.     if (type == NULL) {
  1979.         /* Reraise */
  1980.         PyThreadState *tstate = PyThreadState_Get();
  1981.         type = tstate->exc_type == NULL ? Py_None : tstate->exc_type;
  1982.         value = tstate->exc_value;
  1983.         tb = tstate->exc_traceback;
  1984.         Py_XINCREF(type);
  1985.         Py_XINCREF(value);
  1986.         Py_XINCREF(tb);
  1987.     }
  1988.         
  1989.     /* We support the following forms of raise:
  1990.        raise <class>, <classinstance>
  1991.        raise <class>, <argument tuple>
  1992.        raise <class>, None
  1993.        raise <class>, <argument>
  1994.        raise <classinstance>, None
  1995.        raise <string>, <object>
  1996.        raise <string>, None
  1997.  
  1998.        An omitted second argument is the same as None.
  1999.  
  2000.        In addition, raise <tuple>, <anything> is the same as
  2001.        raising the tuple's first item (and it better have one!);
  2002.        this rule is applied recursively.
  2003.  
  2004.        Finally, an optional third argument can be supplied, which
  2005.        gives the traceback to be substituted (useful when
  2006.        re-raising an exception after examining it).  */
  2007.  
  2008.     /* First, check the traceback argument, replacing None with
  2009.        NULL. */
  2010.     if (tb == Py_None) {
  2011.         Py_DECREF(tb);
  2012.         tb = NULL;
  2013.     }
  2014.     else if (tb != NULL && !PyTraceBack_Check(tb)) {
  2015.         PyErr_SetString(PyExc_TypeError,
  2016.                "raise 3rd arg must be traceback or None");
  2017.         goto raise_error;
  2018.     }
  2019.  
  2020.     /* Next, replace a missing value with None */
  2021.     if (value == NULL) {
  2022.         value = Py_None;
  2023.         Py_INCREF(value);
  2024.     }
  2025.  
  2026.     /* Next, repeatedly, replace a tuple exception with its first item */
  2027.     while (PyTuple_Check(type) && PyTuple_Size(type) > 0) {
  2028.         PyObject *tmp = type;
  2029.         type = PyTuple_GET_ITEM(type, 0);
  2030.         Py_INCREF(type);
  2031.         Py_DECREF(tmp);
  2032.     }
  2033.  
  2034.     if (PyString_Check(type))
  2035.         ;
  2036.  
  2037.     else if (PyClass_Check(type))
  2038.         PyErr_NormalizeException(&type, &value, &tb);
  2039.  
  2040.     else if (PyInstance_Check(type)) {
  2041.         /* Raising an instance.  The value should be a dummy. */
  2042.         if (value != Py_None) {
  2043.             PyErr_SetString(PyExc_TypeError,
  2044.               "instance exception may not have a separate value");
  2045.             goto raise_error;
  2046.         }
  2047.         else {
  2048.             /* Normalize to raise <class>, <instance> */
  2049.             Py_DECREF(value);
  2050.             value = type;
  2051.             type = (PyObject*) ((PyInstanceObject*)type)->in_class;
  2052.             Py_INCREF(type);
  2053.         }
  2054.     }
  2055.     else {
  2056.         /* Not something you can raise.  You get an exception
  2057.            anyway, just not what you specified :-) */
  2058.         PyErr_SetString(PyExc_TypeError,
  2059.             "exceptions must be strings, classes, or instances");
  2060.         goto raise_error;
  2061.     }
  2062.     PyErr_Restore(type, value, tb);
  2063.     if (tb == NULL)
  2064.         return WHY_EXCEPTION;
  2065.     else
  2066.         return WHY_RERAISE;
  2067.  raise_error:
  2068.     Py_XDECREF(value);
  2069.     Py_XDECREF(type);
  2070.     Py_XDECREF(tb);
  2071.     return WHY_EXCEPTION;
  2072. }
  2073.  
  2074. static int
  2075. unpack_sequence(v, argcnt, sp)
  2076.      PyObject *v;
  2077.      int argcnt;
  2078.      PyObject **sp;
  2079. {
  2080.     int i;
  2081.     PyObject *w;
  2082.     
  2083.     for (i = 0; i < argcnt; i++) {
  2084.         if (! (w = PySequence_GetItem(v, i))) {
  2085.             if (PyErr_ExceptionMatches(PyExc_IndexError))
  2086.                 PyErr_SetString(PyExc_ValueError,
  2087.                           "unpack sequence of wrong size");
  2088.             goto finally;
  2089.         }
  2090.         *--sp = w;
  2091.     }
  2092.     /* we better get an IndexError now */
  2093.     if (PySequence_GetItem(v, i) == NULL) {
  2094.         if (PyErr_ExceptionMatches(PyExc_IndexError)) {
  2095.             PyErr_Clear();
  2096.             return 1;
  2097.         }
  2098.         /* some other exception occurred. fall through to finally */
  2099.     }
  2100.     else
  2101.         PyErr_SetString(PyExc_ValueError,
  2102.                 "unpack sequence of wrong size");
  2103.     /* fall through */
  2104. finally:
  2105.     for (; i > 0; i--, sp++)
  2106.         Py_DECREF(*sp);
  2107.  
  2108.     return 0;
  2109. }
  2110.  
  2111.  
  2112. #ifdef LLTRACE
  2113. static int
  2114. prtrace(v, str)
  2115.     PyObject *v;
  2116.     char *str;
  2117. {
  2118.     printf("%s ", str);
  2119.     if (PyObject_Print(v, stdout, 0) != 0)
  2120.         PyErr_Clear(); /* Don't know what else to do */
  2121.     printf("\n");
  2122. }
  2123. #endif
  2124.  
  2125. static void
  2126. call_exc_trace(p_trace, p_newtrace, f)
  2127.     PyObject **p_trace, **p_newtrace;
  2128.     PyFrameObject *f;
  2129. {
  2130.     PyObject *type, *value, *traceback, *arg;
  2131.     int err;
  2132.     PyErr_Fetch(&type, &value, &traceback);
  2133.     if (value == NULL) {
  2134.         value = Py_None;
  2135.         Py_INCREF(value);
  2136.     }
  2137.     arg = Py_BuildValue("(OOO)", type, value, traceback);
  2138.     if (arg == NULL) {
  2139.         PyErr_Restore(type, value, traceback);
  2140.         return;
  2141.     }
  2142.     err = call_trace(p_trace, p_newtrace, f, "exception", arg);
  2143.     Py_DECREF(arg);
  2144.     if (err == 0)
  2145.         PyErr_Restore(type, value, traceback);
  2146.     else {
  2147.         Py_XDECREF(type);
  2148.         Py_XDECREF(value);
  2149.         Py_XDECREF(traceback);
  2150.     }
  2151. }
  2152.  
  2153. static int
  2154. call_trace(p_trace, p_newtrace, f, msg, arg)
  2155.     PyObject **p_trace; /* in/out; may not be NULL;
  2156.                  may not point to NULL variable initially */
  2157.     PyObject **p_newtrace; /* in/out; may be NULL;
  2158.                 may point to NULL variable;
  2159.                 may be same variable as p_newtrace */
  2160.     PyFrameObject *f;
  2161.     char *msg;
  2162.     PyObject *arg;
  2163. {
  2164.     PyThreadState *tstate = f->f_tstate;
  2165.     PyObject *args, *what;
  2166.     PyObject *res = NULL;
  2167.     
  2168.     if (tstate->tracing) {
  2169.         /* Don't do recursive traces */
  2170.         if (p_newtrace) {
  2171.             Py_XDECREF(*p_newtrace);
  2172.             *p_newtrace = NULL;
  2173.         }
  2174.         return 0;
  2175.     }
  2176.     
  2177.     args = PyTuple_New(3);
  2178.     if (args == NULL)
  2179.         goto cleanup;
  2180.     what = PyString_FromString(msg);
  2181.     if (what == NULL)
  2182.         goto cleanup;
  2183.     Py_INCREF(f);
  2184.     PyTuple_SET_ITEM(args, 0, (PyObject *)f);
  2185.     PyTuple_SET_ITEM(args, 1, what);
  2186.     if (arg == NULL)
  2187.         arg = Py_None;
  2188.     Py_INCREF(arg);
  2189.     PyTuple_SET_ITEM(args, 2, arg);
  2190.     tstate->tracing++;
  2191.     PyFrame_FastToLocals(f);
  2192.     res = PyEval_CallObject(*p_trace, args); /* May clear *p_trace! */
  2193.     PyFrame_LocalsToFast(f, 1);
  2194.     tstate->tracing--;
  2195.  cleanup:
  2196.     Py_XDECREF(args);
  2197.     if (res == NULL) {
  2198.         /* The trace proc raised an exception */
  2199.         PyTraceBack_Here(f);
  2200.         Py_XDECREF(*p_trace);
  2201.         *p_trace = NULL;
  2202.         if (p_newtrace) {
  2203.             Py_XDECREF(*p_newtrace);
  2204.             *p_newtrace = NULL;
  2205.         }
  2206.         return -1;
  2207.     }
  2208.     else {
  2209.         if (p_newtrace) {
  2210.             Py_XDECREF(*p_newtrace);
  2211.             if (res == Py_None)
  2212.                 *p_newtrace = NULL;
  2213.             else {
  2214.                 Py_INCREF(res);
  2215.                 *p_newtrace = res;
  2216.             }
  2217.         }
  2218.         Py_DECREF(res);
  2219.         return 0;
  2220.     }
  2221. }
  2222.  
  2223. PyObject *
  2224. PyEval_GetBuiltins()
  2225. {
  2226.     PyThreadState *tstate = PyThreadState_Get();
  2227.     PyFrameObject *current_frame = tstate->frame;
  2228.     if (current_frame == NULL)
  2229.         return tstate->interp->builtins;
  2230.     else
  2231.         return current_frame->f_builtins;
  2232. }
  2233.  
  2234. PyObject *
  2235. PyEval_GetLocals()
  2236. {
  2237.     PyFrameObject *current_frame = PyThreadState_Get()->frame;
  2238.     if (current_frame == NULL)
  2239.         return NULL;
  2240.     PyFrame_FastToLocals(current_frame);
  2241.     return current_frame->f_locals;
  2242. }
  2243.  
  2244. PyObject *
  2245. PyEval_GetGlobals()
  2246. {
  2247.     PyFrameObject *current_frame = PyThreadState_Get()->frame;
  2248.     if (current_frame == NULL)
  2249.         return NULL;
  2250.     else
  2251.         return current_frame->f_globals;
  2252. }
  2253.  
  2254. PyObject *
  2255. PyEval_GetFrame()
  2256. {
  2257.     PyFrameObject *current_frame = PyThreadState_Get()->frame;
  2258.     return (PyObject *)current_frame;
  2259. }
  2260.  
  2261. int
  2262. PyEval_GetRestricted()
  2263. {
  2264.     PyFrameObject *current_frame = PyThreadState_Get()->frame;
  2265.     return current_frame == NULL ? 0 : current_frame->f_restricted;
  2266. }
  2267.  
  2268. int
  2269. Py_FlushLine()
  2270. {
  2271.     PyObject *f = PySys_GetObject("stdout");
  2272.     if (f == NULL)
  2273.         return 0;
  2274.     if (!PyFile_SoftSpace(f, 0))
  2275.         return 0;
  2276.     return PyFile_WriteString("\n", f);
  2277. }
  2278.  
  2279.  
  2280. /* External interface to call any callable object.
  2281.    The arg must be a tuple or NULL. */
  2282.  
  2283. #undef PyEval_CallObject
  2284. /* for backward compatibility: export this interface */
  2285.  
  2286. PyObject *
  2287. PyEval_CallObject(func, arg)
  2288.     PyObject *func;
  2289.     PyObject *arg;
  2290. {
  2291.     return PyEval_CallObjectWithKeywords(func, arg, (PyObject *)NULL);
  2292. }
  2293. #define PyEval_CallObject(func,arg) \
  2294.         PyEval_CallObjectWithKeywords(func, arg, (PyObject *)NULL)
  2295.  
  2296. PyObject *
  2297. PyEval_CallObjectWithKeywords(func, arg, kw)
  2298.     PyObject *func;
  2299.     PyObject *arg;
  2300.     PyObject *kw;
  2301. {
  2302.         ternaryfunc call;
  2303.         PyObject *result;
  2304.  
  2305.     if (arg == NULL)
  2306.         arg = PyTuple_New(0);
  2307.     else if (!PyTuple_Check(arg)) {
  2308.         PyErr_SetString(PyExc_TypeError,
  2309.                 "argument list must be a tuple");
  2310.         return NULL;
  2311.     }
  2312.     else
  2313.         Py_INCREF(arg);
  2314.  
  2315.     if (kw != NULL && !PyDict_Check(kw)) {
  2316.         PyErr_SetString(PyExc_TypeError,
  2317.                 "keyword list must be a dictionary");
  2318.         return NULL;
  2319.     }
  2320.  
  2321.         if ((call = func->ob_type->tp_call) != NULL)
  2322.                 result = (*call)(func, arg, kw);
  2323.         else if (PyMethod_Check(func) || PyFunction_Check(func))
  2324.         result = call_function(func, arg, kw);
  2325.     else
  2326.         result = call_builtin(func, arg, kw);
  2327.  
  2328.     Py_DECREF(arg);
  2329.     
  2330.         if (result == NULL && !PyErr_Occurred())
  2331.         PyErr_SetString(PyExc_SystemError,
  2332.                "NULL result without error in call_object");
  2333.         
  2334.         return result;
  2335. }
  2336.  
  2337. static PyObject *
  2338. call_builtin(func, arg, kw)
  2339.     PyObject *func;
  2340.     PyObject *arg;
  2341.     PyObject *kw;
  2342. {
  2343.     if (PyCFunction_Check(func)) {
  2344.         PyCFunction meth = PyCFunction_GetFunction(func);
  2345.         PyObject *self = PyCFunction_GetSelf(func);
  2346.         int flags = PyCFunction_GetFlags(func);
  2347.         if (!(flags & METH_VARARGS)) {
  2348.             int size = PyTuple_Size(arg);
  2349.             if (size == 1)
  2350.                 arg = PyTuple_GET_ITEM(arg, 0);
  2351.             else if (size == 0)
  2352.                 arg = NULL;
  2353.         }
  2354.         if (flags & METH_KEYWORDS)
  2355.             return (*(PyCFunctionWithKeywords)meth)(self, arg, kw);
  2356.         if (kw != NULL && PyDict_Size(kw) != 0) {
  2357.             PyErr_SetString(PyExc_TypeError,
  2358.                    "this function takes no keyword arguments");
  2359.             return NULL;
  2360.         }
  2361.         return (*meth)(self, arg);
  2362.     }
  2363.     if (PyClass_Check(func)) {
  2364.         return PyInstance_New(func, arg, kw);
  2365.     }
  2366.     if (PyInstance_Check(func)) {
  2367.             PyObject *res, *call = PyObject_GetAttrString(func,"__call__");
  2368.         if (call == NULL) {
  2369.             PyErr_Clear();
  2370.             PyErr_SetString(PyExc_AttributeError,
  2371.                    "no __call__ method defined");
  2372.             return NULL;
  2373.         }
  2374.         res = PyEval_CallObjectWithKeywords(call, arg, kw);
  2375.         Py_DECREF(call);
  2376.         return res;
  2377.     }
  2378.     PyErr_SetString(PyExc_TypeError, "call of non-function");
  2379.     return NULL;
  2380. }
  2381.  
  2382. static PyObject *
  2383. call_function(func, arg, kw)
  2384.     PyObject *func;
  2385.     PyObject *arg;
  2386.     PyObject *kw;
  2387. {
  2388.     PyObject *class = NULL; /* == owner */
  2389.     PyObject *argdefs;
  2390.     PyObject **d, **k;
  2391.     int nk, nd;
  2392.     PyObject *result;
  2393.     
  2394.     if (kw != NULL && !PyDict_Check(kw)) {
  2395.         PyErr_BadInternalCall();
  2396.         return NULL;
  2397.     }
  2398.     
  2399.     if (PyMethod_Check(func)) {
  2400.         PyObject *self = PyMethod_Self(func);
  2401.         class = PyMethod_Class(func);
  2402.         func = PyMethod_Function(func);
  2403.         if (self == NULL) {
  2404.             /* Unbound methods must be called with an instance of
  2405.                the class (or a derived class) as first argument */
  2406.             if (PyTuple_Size(arg) >= 1) {
  2407.                 self = PyTuple_GET_ITEM(arg, 0);
  2408.                 if (self != NULL &&
  2409.                     PyInstance_Check(self) &&
  2410.                     PyClass_IsSubclass((PyObject *)
  2411.                       (((PyInstanceObject *)self)->in_class),
  2412.                            class))
  2413.                     /* Handy-dandy */ ;
  2414.                 else
  2415.                     self = NULL;
  2416.             }
  2417.             if (self == NULL) {
  2418.                 PyErr_SetString(PyExc_TypeError,
  2419.        "unbound method must be called with class instance 1st argument");
  2420.                 return NULL;
  2421.             }
  2422.             Py_INCREF(arg);
  2423.         }
  2424.         else {
  2425.             int argcount = PyTuple_Size(arg);
  2426.             PyObject *newarg = PyTuple_New(argcount + 1);
  2427.             int i;
  2428.             if (newarg == NULL)
  2429.                 return NULL;
  2430.             Py_INCREF(self);
  2431.             PyTuple_SET_ITEM(newarg, 0, self);
  2432.             for (i = 0; i < argcount; i++) {
  2433.                 PyObject *v = PyTuple_GET_ITEM(arg, i);
  2434.                 Py_XINCREF(v);
  2435.                 PyTuple_SET_ITEM(newarg, i+1, v);
  2436.             }
  2437.             arg = newarg;
  2438.         }
  2439.     }
  2440.     else {
  2441.         if (!PyFunction_Check(func)) {
  2442.             PyErr_SetString(PyExc_TypeError,
  2443.                     "call of non-function");
  2444.             return NULL;
  2445.         }
  2446.         Py_INCREF(arg);
  2447.     }
  2448.     
  2449.     argdefs = PyFunction_GetDefaults(func);
  2450.     if (argdefs != NULL && PyTuple_Check(argdefs)) {
  2451.         d = &PyTuple_GET_ITEM((PyTupleObject *)argdefs, 0);
  2452.         nd = PyTuple_Size(argdefs);
  2453.     }
  2454.     else {
  2455.         d = NULL;
  2456.         nd = 0;
  2457.     }
  2458.     
  2459.     if (kw != NULL) {
  2460.         int pos, i;
  2461.         nk = PyDict_Size(kw);
  2462.         k = PyMem_NEW(PyObject *, 2*nk);
  2463.         if (k == NULL) {
  2464.             PyErr_NoMemory();
  2465.             Py_DECREF(arg);
  2466.             return NULL;
  2467.         }
  2468.         pos = i = 0;
  2469.         while (PyDict_Next(kw, &pos, &k[i], &k[i+1]))
  2470.             i += 2;
  2471.         nk = i/2;
  2472.         /* XXX This is broken if the caller deletes dict items! */
  2473.     }
  2474.     else {
  2475.         k = NULL;
  2476.         nk = 0;
  2477.     }
  2478.     
  2479.     result = eval_code2(
  2480.         (PyCodeObject *)PyFunction_GetCode(func),
  2481.         PyFunction_GetGlobals(func), (PyObject *)NULL,
  2482.         &PyTuple_GET_ITEM(arg, 0), PyTuple_Size(arg),
  2483.         k, nk,
  2484.         d, nd,
  2485.         class);
  2486.     
  2487.     Py_DECREF(arg);
  2488.     PyMem_XDEL(k);
  2489.     
  2490.     return result;
  2491. }
  2492.  
  2493. #define SLICE_ERROR_MSG \
  2494.     "standard sequence type does not support step size other than one"
  2495.  
  2496. static PyObject *
  2497. loop_subscript(v, w)
  2498.     PyObject *v, *w;
  2499. {
  2500.     PySequenceMethods *sq = v->ob_type->tp_as_sequence;
  2501.     int i;
  2502.     if (sq == NULL) {
  2503.         PyErr_SetString(PyExc_TypeError, "loop over non-sequence");
  2504.         return NULL;
  2505.     }
  2506.     i = PyInt_AsLong(w);
  2507.     v = (*sq->sq_item)(v, i);
  2508.     if (v)
  2509.         return v;
  2510.     if (PyErr_ExceptionMatches(PyExc_IndexError))
  2511.         PyErr_Clear();
  2512.     return NULL;
  2513. }
  2514.  
  2515. static int
  2516. slice_index(v, pi)
  2517.     PyObject *v;
  2518.     int *pi;
  2519. {
  2520.     if (v != NULL) {
  2521.         long x;
  2522.         if (!PyInt_Check(v)) {
  2523.             PyErr_SetString(PyExc_TypeError,
  2524.                     "slice index must be int");
  2525.             return -1;
  2526.         }
  2527.         x = PyInt_AsLong(v);
  2528.         /* Truncate -- very long indices are truncated anyway */
  2529.         if (x > INT_MAX)
  2530.             x = INT_MAX;
  2531.         else if (x < -INT_MAX)
  2532.             x = 0;
  2533.         *pi = x;
  2534.     }
  2535.     return 0;
  2536. }
  2537.  
  2538. static PyObject *
  2539. apply_slice(u, v, w) /* return u[v:w] */
  2540.     PyObject *u, *v, *w;
  2541. {
  2542.     int ilow = 0, ihigh = INT_MAX;
  2543.     if (slice_index(v, &ilow) != 0)
  2544.         return NULL;
  2545.     if (slice_index(w, &ihigh) != 0)
  2546.         return NULL;
  2547.     return PySequence_GetSlice(u, ilow, ihigh);
  2548. }
  2549.  
  2550. static int
  2551. assign_slice(u, v, w, x) /* u[v:w] = x */
  2552.     PyObject *u, *v, *w, *x;
  2553. {
  2554.     int ilow = 0, ihigh = INT_MAX;
  2555.     if (slice_index(v, &ilow) != 0)
  2556.         return -1;
  2557.     if (slice_index(w, &ihigh) != 0)
  2558.         return -1;
  2559.     if (x == NULL)
  2560.         return PySequence_DelSlice(u, ilow, ihigh);
  2561.     else
  2562.         return PySequence_SetSlice(u, ilow, ihigh, x);
  2563. }
  2564.  
  2565. static int
  2566. cmp_member(v, w)
  2567.     PyObject *v, *w;
  2568. {
  2569.     int i, cmp;
  2570.     PyObject *x;
  2571.     PySequenceMethods *sq;
  2572.     /* Special case for char in string */
  2573.     if (PyString_Check(w)) {
  2574.         register char *s, *end;
  2575.         register char c;
  2576.         if (!PyString_Check(v) || PyString_Size(v) != 1) {
  2577.             PyErr_SetString(PyExc_TypeError,
  2578.                 "string member test needs char left operand");
  2579.             return -1;
  2580.         }
  2581.         c = PyString_AsString(v)[0];
  2582.         s = PyString_AsString(w);
  2583.         end = s + PyString_Size(w);
  2584.         while (s < end) {
  2585.             if (c == *s++)
  2586.                 return 1;
  2587.         }
  2588.         return 0;
  2589.     }
  2590.     sq = w->ob_type->tp_as_sequence;
  2591.     if (sq == NULL) {
  2592.         PyErr_SetString(PyExc_TypeError,
  2593.             "'in' or 'not in' needs sequence right argument");
  2594.         return -1;
  2595.     }
  2596.     for (i = 0; ; i++) {
  2597.         x = (*sq->sq_item)(w, i);
  2598.         if (x == NULL) {
  2599.             if (PyErr_Occurred() == PyExc_IndexError) {
  2600.                 PyErr_Clear();
  2601.                 break;
  2602.             }
  2603.             return -1;
  2604.         }
  2605.         cmp = PyObject_Compare(v, x);
  2606.         Py_XDECREF(x);
  2607.         if (cmp == 0)
  2608.             return 1;
  2609.         if (PyErr_Occurred())
  2610.             return -1;
  2611.     }
  2612.     return 0;
  2613. }
  2614.  
  2615. static PyObject *
  2616. cmp_outcome(op, v, w)
  2617.     int op;
  2618.     register PyObject *v;
  2619.     register PyObject *w;
  2620. {
  2621.     register int cmp;
  2622.     register int res = 0;
  2623.     switch (op) {
  2624.     case IS:
  2625.     case IS_NOT:
  2626.         res = (v == w);
  2627.         if (op == (int) IS_NOT)
  2628.             res = !res;
  2629.         break;
  2630.     case IN:
  2631.     case NOT_IN:
  2632.         res = cmp_member(v, w);
  2633.         if (res < 0)
  2634.             return NULL;
  2635.         if (op == (int) NOT_IN)
  2636.             res = !res;
  2637.         break;
  2638.     case EXC_MATCH:
  2639.         res = PyErr_GivenExceptionMatches(v, w);
  2640.         break;
  2641.     default:
  2642.         cmp = PyObject_Compare(v, w);
  2643.         if (cmp && PyErr_Occurred())
  2644.             return NULL;
  2645.         switch (op) {
  2646.         case LT: res = cmp <  0; break;
  2647.         case LE: res = cmp <= 0; break;
  2648.         case EQ: res = cmp == 0; break;
  2649.         case NE: res = cmp != 0; break;
  2650.         case GT: res = cmp >  0; break;
  2651.         case GE: res = cmp >= 0; break;
  2652.         /* XXX no default? (res is initialized to 0 though) */
  2653.         }
  2654.     }
  2655.     v = res ? Py_True : Py_False;
  2656.     Py_INCREF(v);
  2657.     return v;
  2658. }
  2659.  
  2660. static int
  2661. import_from(locals, v, name)
  2662.     PyObject *locals;
  2663.     PyObject *v;
  2664.     PyObject *name;
  2665. {
  2666.     PyObject *w, *x;
  2667.     if (!PyModule_Check(v)) {
  2668.         PyErr_SetString(PyExc_TypeError,
  2669.                 "import-from requires module object");
  2670.         return -1;
  2671.     }
  2672.     w = PyModule_GetDict(v);
  2673.     if (PyString_AsString(name)[0] == '*') {
  2674.         int pos, err;
  2675.         PyObject *name, *value;
  2676.         pos = 0;
  2677.         while (PyDict_Next(w, &pos, &name, &value)) {
  2678.             if (!PyString_Check(name) ||
  2679.                 PyString_AsString(name)[0] == '_')
  2680.                 continue;
  2681.             Py_INCREF(value);
  2682.             err = PyDict_SetItem(locals, name, value);
  2683.             Py_DECREF(value);
  2684.             if (err != 0)
  2685.                 return -1;
  2686.         }
  2687.         return 0;
  2688.     }
  2689.     else {
  2690.         x = PyDict_GetItem(w, name);
  2691.         if (x == NULL) {
  2692.             char buf[250];
  2693.             sprintf(buf, "cannot import name %.230s",
  2694.                 PyString_AsString(name));
  2695.             PyErr_SetString(PyExc_ImportError, buf);
  2696.             return -1;
  2697.         }
  2698.         else
  2699.             return PyDict_SetItem(locals, name, x);
  2700.     }
  2701. }
  2702.  
  2703. static PyObject *
  2704. build_class(methods, bases, name)
  2705.     PyObject *methods; /* dictionary */
  2706.     PyObject *bases;  /* tuple containing classes */
  2707.     PyObject *name;   /* string */
  2708. {
  2709.     int i, n;
  2710.     if (!PyTuple_Check(bases)) {
  2711.         PyErr_SetString(PyExc_SystemError,
  2712.                 "build_class with non-tuple bases");
  2713.         return NULL;
  2714.     }
  2715.     if (!PyDict_Check(methods)) {
  2716.         PyErr_SetString(PyExc_SystemError,
  2717.                 "build_class with non-dictionary");
  2718.         return NULL;
  2719.     }
  2720.     if (!PyString_Check(name)) {
  2721.         PyErr_SetString(PyExc_SystemError,
  2722.                 "build_class witn non-string name");
  2723.         return NULL;
  2724.     }
  2725.     n = PyTuple_Size(bases);
  2726.     for (i = 0; i < n; i++) {
  2727.         PyObject *base = PyTuple_GET_ITEM(bases, i);
  2728.         if (!PyClass_Check(base)) {
  2729.             /* Call the base's *type*, if it is callable.
  2730.                This code is a hook for Donald Beaudry's
  2731.                and Jim Fulton's type extensions.  In
  2732.                unexended Python it will never be triggered
  2733.                since its types are not callable.
  2734.                Ditto: call the bases's *class*, if it has
  2735.                one.  This makes the same thing possible
  2736.                without writing C code.  A true meta-object
  2737.                protocol! */
  2738.             PyObject *basetype = (PyObject *)base->ob_type;
  2739.             PyObject *callable = NULL;
  2740.             if (PyCallable_Check(basetype))
  2741.                 callable = basetype;
  2742.             else
  2743.                 callable = PyObject_GetAttrString(
  2744.                     base, "__class__");
  2745.             if (callable) {
  2746.                 PyObject *args;
  2747.                 PyObject *newclass = NULL;
  2748.                 args = Py_BuildValue(
  2749.                     "(OOO)", name, bases, methods);
  2750.                 if (args != NULL) {
  2751.                     newclass = PyEval_CallObject(
  2752.                         callable, args);
  2753.                     Py_DECREF(args);
  2754.                 }
  2755.                 if (callable != basetype) {
  2756.                     Py_DECREF(callable);
  2757.                 }
  2758.                 return newclass;
  2759.             }
  2760.             PyErr_SetString(PyExc_TypeError,
  2761.                 "base is not a class object");
  2762.             return NULL;
  2763.         }
  2764.     }
  2765.     return PyClass_New(bases, methods, name);
  2766. }
  2767.  
  2768. static int
  2769. exec_statement(f, prog, globals, locals)
  2770.     PyFrameObject *f;
  2771.     PyObject *prog;
  2772.     PyObject *globals;
  2773.     PyObject *locals;
  2774. {
  2775.     char *s;
  2776.     int n;
  2777.     PyObject *v;
  2778.     int plain = 0;
  2779.  
  2780.     if (PyTuple_Check(prog) && globals == Py_None && locals == Py_None &&
  2781.         ((n = PyTuple_Size(prog)) == 2 || n == 3)) {
  2782.         /* Backward compatibility hack */
  2783.         globals = PyTuple_GetItem(prog, 1);
  2784.         if (n == 3)
  2785.             locals = PyTuple_GetItem(prog, 2);
  2786.         prog = PyTuple_GetItem(prog, 0);
  2787.     }
  2788.     if (globals == Py_None) {
  2789.         globals = PyEval_GetGlobals();
  2790.         if (locals == Py_None) {
  2791.             locals = PyEval_GetLocals();
  2792.             plain = 1;
  2793.         }
  2794.     }
  2795.     else if (locals == Py_None)
  2796.         locals = globals;
  2797.     if (!PyString_Check(prog) &&
  2798.         !PyCode_Check(prog) &&
  2799.         !PyFile_Check(prog)) {
  2800.         PyErr_SetString(PyExc_TypeError,
  2801.                "exec 1st arg must be string, code or file object");
  2802.         return -1;
  2803.     }
  2804.     if (!PyDict_Check(globals) || !PyDict_Check(locals)) {
  2805.         PyErr_SetString(PyExc_TypeError,
  2806.             "exec 2nd/3rd args must be dict or None");
  2807.         return -1;
  2808.     }
  2809.     if (PyDict_GetItemString(globals, "__builtins__") == NULL)
  2810.         PyDict_SetItemString(globals, "__builtins__", f->f_builtins);
  2811.     if (PyCode_Check(prog)) {
  2812.         v = PyEval_EvalCode((PyCodeObject *) prog,
  2813.                     globals, locals);
  2814.         if (v == NULL)
  2815.             return -1;
  2816.         Py_DECREF(v);
  2817.         return 0;
  2818.     }
  2819.     if (PyFile_Check(prog)) {
  2820.         FILE *fp = PyFile_AsFile(prog);
  2821.         char *name = PyString_AsString(PyFile_Name(prog));
  2822.         if (PyRun_File(fp, name, Py_file_input,
  2823.                    globals, locals) == NULL)
  2824.             return -1;
  2825.         return 0;
  2826.     }
  2827.     s = PyString_AsString(prog);
  2828.     if ((int)strlen(s) != PyString_Size(prog)) {
  2829.         PyErr_SetString(PyExc_ValueError,
  2830.                 "embedded '\\0' in exec string");
  2831.         return -1;
  2832.     }
  2833.     v = PyRun_String(s, Py_file_input, globals, locals);
  2834.     if (v == NULL)
  2835.         return -1;
  2836.     Py_DECREF(v);
  2837.     if (plain)
  2838.         PyFrame_LocalsToFast(f, 0);
  2839.     return 0;
  2840. }
  2841.  
  2842. /* Hack for ni.py */
  2843. static PyObject *
  2844. find_from_args(f, nexti)
  2845.     PyFrameObject *f;
  2846.     int nexti;
  2847. {
  2848.     int opcode;
  2849.     int oparg;
  2850.     PyObject *list, *name;
  2851.     unsigned char *next_instr;
  2852.     
  2853.     next_instr = GETUSTRINGVALUE(f->f_code->co_code) + nexti;
  2854.     opcode = (*next_instr++);
  2855.     if (opcode != IMPORT_FROM) {
  2856.         Py_INCREF(Py_None);
  2857.         return Py_None;
  2858.     }
  2859.     
  2860.     list = PyList_New(0);
  2861.     if (list == NULL)
  2862.         return NULL;
  2863.     
  2864.     do {
  2865.         oparg = (next_instr[1]<<8) + next_instr[0];
  2866.         next_instr += 2;
  2867.         name = Getnamev(f, oparg);
  2868.         if (PyList_Append(list, name) < 0) {
  2869.             Py_DECREF(list);
  2870.             break;
  2871.         }
  2872.         opcode = (*next_instr++);
  2873.     } while (opcode == IMPORT_FROM);
  2874.     
  2875.     return list;
  2876. }
  2877.  
  2878.  
  2879. #ifdef DYNAMIC_EXECUTION_PROFILE
  2880.  
  2881. PyObject *
  2882. getarray(a)
  2883.     long a[256];
  2884. {
  2885.     int i;
  2886.     PyObject *l = PyList_New(256);
  2887.     if (l == NULL) return NULL;
  2888.     for (i = 0; i < 256; i++) {
  2889.         PyObject *x = PyInt_FromLong(a[i]);
  2890.         if (x == NULL) {
  2891.             Py_DECREF(l);
  2892.             return NULL;
  2893.         }
  2894.         PyList_SetItem(l, i, x);
  2895.     }
  2896.     for (i = 0; i < 256; i++)
  2897.         a[i] = 0;
  2898.     return l;
  2899. }
  2900.  
  2901. PyObject *
  2902. _Py_GetDXProfile(self, args)
  2903.     PyObject *self, *args;
  2904. {
  2905. #ifndef DXPAIRS
  2906.     return getarray(dxp);
  2907. #else
  2908.     int i;
  2909.     PyObject *l = PyList_New(257);
  2910.     if (l == NULL) return NULL;
  2911.     for (i = 0; i < 257; i++) {
  2912.         PyObject *x = getarray(dxpairs[i]);
  2913.         if (x == NULL) {
  2914.             Py_DECREF(l);
  2915.             return NULL;
  2916.         }
  2917.         PyList_SetItem(l, i, x);
  2918.     }
  2919.     return l;
  2920. #endif
  2921. }
  2922.  
  2923. #endif
  2924.